Articles in this section
Category / Section

How to get the changed HTML Text of a document loaded in the WinForms HTMLUIControl and modified during runtime?

1 min read

Change the HTML text

The HTMLUI control's Text property is used to access the HTML text parsed and loaded in the HTMLUI control initially.

The htmluiControl1.Document.Document.OuterXml property is used to get the new HTML text of the document after being modified in the HTMLUI control at runtime.

The htmluiControl1.Document is the parsed and displays document in the HTMLUI control.

The htmluiControl1.Document.Document is the output XML document that is to be updated with the changes in the HTML text in the current document at run time.

The htmluiControl1.Document.Document.OuterXml gets the markup string of the parent node of all the XML elements in the document including the child nodes.

C#

//Accessing the changed HTML text
string newHTML = this.htmluiControl1.Document.Document.OuterXml.ToString();

 

VB

'Accessing the changed HTML text
Private newHTML As String = Me.htmluiControl1.Document.Document.OuterXml.ToString()

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied