EnumElementType
The element type of an element within the Dom.
Definition
Namespace:ArtOfTest.WebAii.ObjectModel
Assembly:ArtOfTest.WebAii.dll
Syntax:
public enum ElementType
Fields
Anchor
The element is an anchor. For example ( <a href="somefile.htm">click me</a> )
Audio
The element is audio media. For example ( <audio></audio> )
CascadingStyleSheet
The element is a css style sheet. For example ( <link type="text/css"> or <style></style> )
Div
The element is a Div. For example ( <div></div> )
Form
The element is a form. For example ( <form></form> )
Frame
The element is a Frame. For example ( <frame></frame> )
FrameSet
The element is a Frameset. For example ( <frameset></frameset> )
IFrame
The element is an IFrame. For example ( <iframe></iframe> )
Image
The element is an image. For example ( <img></img> )
Input
The element is an input. For example ( <input></input> )
Link
The element is a link. For example ( <link></link> )
ListItem
The element is a list item. For example ( <li></li> )
Map
The element is an imagemap. For example ( <map></map> )
OrderedList
The element is an ordered list. For example ( <ol></ol> )
Script
The element is a script. For example ( <script></script> )
Select
The element is a select. For example ( <select></select> )
Source
The element is a media source. For example ( <source /> )
Span
The element is a space. For example ( <span></span> )
Table
The element is a table. For example ( <table></table> )
TableCell
The element is a table cell. For example ( <td></td> )
TableColumn
The element is a table column. For example ( <col></col> )
TableHeader
The element is a table header. For example ( <th></th> )
TableRow
The element is a table row. For example ( <tr></tr> )
TestRegion
The element is a testregion. For example ( <testregion id="foo"></testregion> or <!--testregion id="foo"--><!--/testregion--> )
TextArea
The element is a textarea. For example ( <textarea></textarea> )
UnorderedList
The element is an unordered list. For example ( <ul></ul> )
Video
The element is a video. For example ( <video></video> )