ClassHtmlTableRow
Class
Test class for an HtmlTableRow element <tr>...</tr>
Definition
Namespace:ArtOfTest.WebAii.Controls.HtmlControls
Assembly:ArtOfTest.WebAii.dll
Syntax:
cs-api-definition
public class HtmlTableRow : HtmlContainerControl
Inheritance: objectControlHtmlControlHtmlContainerControlHtmlTableRow
Derived Classes:
Inherited Members
Constructors
HtmlTableRow(Element)
Create a new control.
Declaration
cs-api-definition
public HtmlTableRow(Element element)
Parameters
element
The base element.
Properties
Align
Gets the horizontal alignment of data within a table row.
Cells
Return list of HtmlTableCells.
Declaration
cs-api-definition
public List<HtmlTableCell> Cells { get; }
Property Value
RowIndex
Gets the position of a row in the table's rows collection.
this[int]
Return cell by its index in this row.
Declaration
cs-api-definition
public HtmlTableCell this[int index] { get; }
Parameters
index
The cell index.
Property Value
The cell at desired index.
Methods
AssignElement(Element)
Assign element and initialize this control.
Declaration
cs-api-definition
public override void AssignElement(Element e)
Parameters
e
The base element.
Overrides