The HtmlElement type exposes the following members.
Back to Top
Properties
Name | Description | |
---|---|---|
AfterEndTagPosition |
Gets the character offset into the HTML document at which the last character
(not including < > tag characters) in this HTML element appears.
| |
AfterStartTagPosition |
Gets the character offset into the HTML document at which the 1st character
(not including < > tag characters) in this HTML element appears.
| |
Attributes |
Gets all the attributes contained in this HtmlElement as an IDictionary
of attribute names to values.
| |
CharEncoding |
Gets or sets the character encoding that is used to decode the data contained
in this HtmlElement, for example "UTF-8".
| |
Content |
Gets or sets the content of this HTML element. This includes everything between the HTML tags, but
excludes the tags themselves and any attributes.
| |
ContentPosition |
Gets the character offset into the HTML document at which this HTML element's content starts.
| |
Disabled |
Gets or sets a value that indicates whether this HTML element has been disabled.
| |
Id |
Gets or sets the value of the "id" attribute for this HTML element.
| |
IsSuccessfulControl |
Gets a value that indicates whether this HTML element currently represents a successful control.
A successful control is one that is valid for submission, i.e. one that will be sent to the
web server when the form is submitted.
| |
Name |
Gets or sets the value of the "name" attribute for this HTML element.
| |
Tag |
Gets the tag name of this HTML element.
| |
Value |
Gets or sets the value of the "value" attribute for this HTML element.
|
See Also