Gets the character offset into the HTML document at which the last character
(not including < > tag characters) in this HTML element appears.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Field Value
The character offset into the HTML document at which the last character in this HTML element appears.Examples
The content of the HTTP Response object:
<html><body><form name="myForm">Select: <select name="mySelect"><option value="1">1</option><option value="2">2</option></select></form></body></html>
Form form = response.ExtractForm("myForm"); SelectElement select = form.GetSelectElement("mySelect"); // This outputs 129, i.e. the offset of the '<' after the closing '</select>' WriteMessage("AfterEndTagPosition : " + select.AfterEndTagPosition);
See Also