Class
HtmlTable

Test class for an HtmlTable element <table>...</table>

Definition

Namespace:ArtOfTest.WebAii.Controls.HtmlControls

Assembly:ArtOfTest.WebAii.dll

Syntax:

cs-api-definition
public class HtmlTable : HtmlContainerControl

Inheritance: objectControlHtmlControlHtmlContainerControlHtmlTable

Derived Classes: GridTableViewGridTableViewScrollingEnabledRadSlidingZone

Inherited Members HtmlContainerControl.TextContentHtmlContainerControl.InnerTextHtmlControl.FindParentContainer<TContainerControl>()HtmlControl.ValidateTag(string)HtmlControl.ValidateControl()HtmlControl.ParseResponseValue<T>(string, T)HtmlControl.GetAttributeAsString(string)HtmlControl.InitializeMappings(MappingsCollection)HtmlControl.GetRectangle()HtmlControl.IsVisible()HtmlControl.GetStyleValue(string)HtmlControl.GetStyle(string)HtmlControl.GetComputedStyleValue(string)HtmlControl.GetComputedStyle(string)HtmlControl.Parent<TContainerControl>()HtmlControl.Capture()HtmlControl.Capture(string, string)HtmlControl.Capture(string)HtmlControl.InvokeEvent(ScriptEventType)HtmlControl.InvokeEvent(ScriptEventType, bool)HtmlControl.InvokeEvent(ScriptEvent)HtmlControl.InvokeEvent(ScriptEvent, bool)HtmlControl.AddEventListener(string, EventHandler<JavascriptEventArgs>)HtmlControl.RemoveEventListener(string, EventHandler<JavascriptEventArgs>)HtmlControl.MouseClick()HtmlControl.MouseClick(MouseClickType)HtmlControl.MouseClick(MouseClickType, int, int)HtmlControl.MouseClick(MouseClickType, Point, OffsetReference)HtmlControl.MouseClick(MouseClickType, int, int, OffsetReference)HtmlControl.MouseHover()HtmlControl.MouseHover(Point)HtmlControl.MouseHover(int, int)HtmlControl.MouseHover(int, int, OffsetReference)HtmlControl.Click()HtmlControl.Click(bool)HtmlControl.ScrollToVisible()HtmlControl.ScrollToVisible(ScrollToVisibleType)HtmlControl.ScrollToVisible(ScrollToVisibleType, Rectangle)HtmlControl.Download(bool, DownloadOption, string, int)HtmlControl.CallMethod(string)HtmlControl.CallMethod<T>(string)HtmlControl.CallMethod<T>(string, T)HtmlControl.GetValue<T>(string)HtmlControl.GetValue<T>(string, T)HtmlControl.GetValue<T>(string, bool)HtmlControl.GetValue<T>(string, bool, T)HtmlControl.SetValue<T>(string, T)HtmlControl.SetValue<T>(string, T, bool)HtmlControl.Focus()HtmlControl.DragTo(OffsetReference, Point, int, int)HtmlControl.DragTo(OffsetReference, int, int, Rectangle, OffsetReference, int, int)HtmlControl.DragTo(Point)HtmlControl.DragTo(int, int)HtmlControl.DragTo(HtmlControl)HtmlControl.DragTo(HtmlControl, OffsetReference, Point)HtmlControl.DragTo(OffsetReference, Point, HtmlControl)HtmlControl.DragTo(OffsetReference, Point, HtmlControl, OffsetReference, Point)HtmlControl.DragTo(OffsetReference, int, int, bool, HtmlControl, OffsetReference, int, int, bool)HtmlControl.DragToWindowLocation(OffsetReference, int, int, bool, OffsetReference, int, int, bool)HtmlControl.ToString()HtmlControl.AsjQueryControl()HtmlControl.GetElementByTagNameClientSideLocatorHtmlControl.GetElementByIdClientSideLocatorHtmlControl.FindHtmlControl.ClientSideLocatorHtmlControl.ScrollTopHtmlControl.ScrollLeftHtmlControl.WaitHtmlControl.IDHtmlControl.CssClassHtmlControl.AttributesHtmlControl.MappingsHtmlControl.StylesHtmlControl.EventsHtmlControl.TagNameHtmlControl.ChildNodesHtmlControl.IsActiveElementHtmlControl.IsEnabledControl.Refresh()Control.AssignFailed(Exception)Control.SetTelerikComponentsVersion(TelerikComponentsVersion?)Control.MatchControl(Element, FindParam)Control.GetFamilyElement(int, Element)Control.ThrowOnInvalidAssignmentControl.TelerikComponentsVersionControl.IsRefreshControl.BaseElementControl.OwnerBrowserControl.LocatorControl.LocatorExpression

Constructors

HtmlTable()

Create a new control.

Declaration

cs-api-definition
public HtmlTable()

HtmlTable(Element)

Create a new control.

Declaration

cs-api-definition
public HtmlTable(Element element)

Parameters

element

Element

The base element.

Properties

AllRows

Gets all rows as one collection. (Head rows, then body rows and then footer rows)

Declaration

cs-api-definition
public ReadOnlyCollection<HtmlTableRow> AllRows { get; }

Property Value

ReadOnlyCollection<HtmlTableRow>

BodyRows

Gets the rows contained in the body of the table if the table is using the tbody tag.

Declaration

cs-api-definition
public ReadOnlyCollection<HtmlTableRow> BodyRows { get; }

Property Value

ReadOnlyCollection<HtmlTableRow>

Border

Gets the width of the table border.

Declaration

cs-api-definition
public string Border { get; }

Property Value

string

Caption

Gets the caption of a table.

Declaration

cs-api-definition
public string Caption { get; }

Property Value

string

CellPadding

Gets the amount of space between the cell border and cell content

Declaration

cs-api-definition
public string CellPadding { get; }

Property Value

string

CellSpacing

Gets the amount of space between the cells in a table.

Declaration

cs-api-definition
public string CellSpacing { get; }

Property Value

string

ColumnCount

Gets the number of columns in this table

Declaration

cs-api-definition
public int ColumnCount { get; }

Property Value

int

FootRows

Gets the rows contained in the table footer if the table is using the tfoot tag.

Declaration

cs-api-definition
public ReadOnlyCollection<HtmlTableRow> FootRows { get; }

Property Value

ReadOnlyCollection<HtmlTableRow>

HeadRows

Gets the rows contained in the table header if the table is using the thead tag.

Declaration

cs-api-definition
public ReadOnlyCollection<HtmlTableRow> HeadRows { get; }

Property Value

ReadOnlyCollection<HtmlTableRow>

Rows

Return List of HtmlTableRows. Only the body rows if TBody is used.

Declaration

cs-api-definition
public ReadOnlyCollection<HtmlTableRow> Rows { get; }

Property Value

ReadOnlyCollection<HtmlTableRow>

Width

Gets the width of a table.

Declaration

cs-api-definition
public string Width { get; }

Property Value

string

this[int]

Gets requested row by index.

Declaration

cs-api-definition
public HtmlTableRow this[int index] { get; }

Parameters

index

int

row index

Property Value

HtmlTableRow

The requested row.

Methods

AssignElement(Element)

Assign element and initialize this control.

Declaration

cs-api-definition
public override void AssignElement(Element e)

Parameters

e

Element

The base element.

Overrides HtmlContainerControl.AssignElement(Element)

Extension Methods