Enum
ElementType

The element type of an element within the Dom.

Definition

Namespace:ArtOfTest.WebAii.ObjectModel

Assembly:ArtOfTest.WebAii.dll

Syntax:

cs-api-definition
public enum ElementType

Fields

Anchor

The element is an anchor. For example ( <a href="somefile.htm">click me</a> )

Declaration

cs-api-definition
Anchor = 7

Field Value

ElementType

Audio

The element is audio media. For example ( <audio></audio> )

Declaration

cs-api-definition
Audio = 25

Field Value

ElementType

CascadingStyleSheet

The element is a css style sheet. For example ( <link type="text/css"> or <style></style> )

Declaration

cs-api-definition
CascadingStyleSheet = 0

Field Value

ElementType

Div

The element is a Div. For example ( <div></div> )

Declaration

cs-api-definition
Div = 3

Field Value

ElementType

Form

The element is a form. For example ( <form></form> )

Declaration

cs-api-definition
Form = 19

Field Value

ElementType

Frame

The element is a Frame. For example ( <frame></frame> )

Declaration

cs-api-definition
Frame = 5

Field Value

ElementType

FrameSet

The element is a Frameset. For example ( <frameset></frameset> )

Declaration

cs-api-definition
FrameSet = 4

Field Value

ElementType

IFrame

The element is an IFrame. For example ( <iframe></iframe> )

Declaration

cs-api-definition
IFrame = 6

Field Value

ElementType

Image

The element is an image. For example ( <img></img> )

Declaration

cs-api-definition
Image = 8

Field Value

ElementType

Input

The element is an input. For example ( <input></input> )

Declaration

cs-api-definition
Input = 13

Field Value

ElementType

The element is a link. For example ( <link></link> )

Declaration

cs-api-definition
Link = 10

Field Value

ElementType

ListItem

The element is a list item. For example ( <li></li> )

Declaration

cs-api-definition
ListItem = 22

Field Value

ElementType

Map

The element is an imagemap. For example ( <map></map> )

Declaration

cs-api-definition
Map = 9

Field Value

ElementType

OrderedList

The element is an ordered list. For example ( <ol></ol> )

Declaration

cs-api-definition
OrderedList = 20

Field Value

ElementType

Other

Anything else.

Declaration

cs-api-definition
Other = 27

Field Value

ElementType

Script

The element is a script. For example ( <script></script> )

Declaration

cs-api-definition
Script = 1

Field Value

ElementType

Select

The element is a select. For example ( <select></select> )

Declaration

cs-api-definition
Select = 12

Field Value

ElementType

Source

The element is a media source. For example ( <source /> )

Declaration

cs-api-definition
Source = 26

Field Value

ElementType

Span

The element is a space. For example ( <span></span> )

Declaration

cs-api-definition
Span = 23

Field Value

ElementType

Table

The element is a table. For example ( <table></table> )

Declaration

cs-api-definition
Table = 2

Field Value

ElementType

TableCell

The element is a table cell. For example ( <td></td> )

Declaration

cs-api-definition
TableCell = 16

Field Value

ElementType

TableColumn

The element is a table column. For example ( <col></col> )

Declaration

cs-api-definition
TableColumn = 18

Field Value

ElementType

TableHeader

The element is a table header. For example ( <th></th> )

Declaration

cs-api-definition
TableHeader = 15

Field Value

ElementType

TableRow

The element is a table row. For example ( <tr></tr> )

Declaration

cs-api-definition
TableRow = 17

Field Value

ElementType

TestRegion

The element is a testregion. For example ( <testregion id="foo"></testregion> or <!--testregion id="foo"--><!--/testregion--> )

Declaration

cs-api-definition
TestRegion = 11

Field Value

ElementType

TextArea

The element is a textarea. For example ( <textarea></textarea> )

Declaration

cs-api-definition
TextArea = 14

Field Value

ElementType

UnorderedList

The element is an unordered list. For example ( <ul></ul> )

Declaration

cs-api-definition
UnorderedList = 21

Field Value

ElementType

Video

The element is a video. For example ( <video></video> )

Declaration

cs-api-definition
Video = 24

Field Value

ElementType