Articles in this section

How to access the inner HTML text of the current HTML element in WinForms HTMLUIControl?

HTML elements

The InnerHTML property is used to access the text inside the particular HTML element. This property also allows access to the HTML element's children.

The following HTML document contains a div element. The code snippet shows how the inner text of the element is accessed and displayed in the output at run-time.

C#

Hashtable htmlelements = this.htmluiControl1.Document.GetElementsByUserIdHash();
DIVElementImpl div1 = this.htmlelements["div1"] as DIVElementImpl;
MessageBox.Show(div1.InnerHTML.ToString());

 

VB

Dim htmlelements As Hashtable = Me.htmluiControl1.Document.GetElementsByUserIdHash()
Dim div1 As DIVElementImpl = TryCast(Me.htmlelements("div1"), DIVElementImpl)
MessageBox.Show(div1.InnerHTML.ToString())

 

Reference link: https://help.syncfusion.com/windowsforms/html-viewer/html-elements

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