Interface ITable
A .NET WPF grid object.
public interface ITable : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
Name
The name of this object.
string Name { get; }
Property Value
Rows
Returns the table rows.
ReadOnlyCollection<ITableRow> Rows { get; }
Property Value
Methods
ActivateCell(int, int)
Double-clicks the specified cell in this grid.
void ActivateCell(int row, int column)
Parameters
rowintThe 0-based index of the row of the cell to activate.
columnintThe 0-based index of the column of the cell to activate.
ActivateCell(int, string)
Double-clicks the specified cell in this grid.
void ActivateCell(int row, string columnHeader)
Parameters
rowintThe 0-based index of the row of the cell to activate.
columnHeaderstringThe column header name of the cell to activate.
ExtendSelect(int)
Adds an entire row to the collection of selected items in this multi-selection grid.
void ExtendSelect(int row)
Parameters
rowint0-based row number.
ExtendSelect(int, int)
Adds a cell to the collection of selected items in this multi-selection grid.
void ExtendSelect(int row, int column)
Parameters
ExtendSelect(int, string)
Adds a cell to the collection of selected items in this multi-selection grid.
void ExtendSelect(int row, string columnHeader)
Parameters
GetCell(int, string)
Returns a cell specified by row index and column header.
ITableCell GetCell(int row, string columnHeader)
Parameters
Returns
SelectCell(int, int)
Clicks the specified cell in this grid.
void SelectCell(int row, int column)
Parameters
SelectCell(int, string)
Clicks the specified cell in this grid.
void SelectCell(int row, string columnHeader)
Parameters
SelectColumn(int)
Clicks the specified column header in this grid.
void SelectColumn(int column)
Parameters
columnint0-based column index.
SelectColumn(string)
Clicks the specified column header in this grid.
void SelectColumn(string columnHeader)
Parameters
columnHeaderstringThe column header name.
SelectRow(int)
Clicks the specified row header in this grid.
void SelectRow(int row)
Parameters
rowint0-based row number.