Interface ITable
A .NET Windows Forms grid object.
public interface ITable : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
CustomGrid
The returned object enables access to supported custom grids.
CustomGrid CustomGrid { get; }
Property Value
ErrorText
Returns the tooltip text of the error icon associated with this object.
string ErrorText { get; }
Property Value
GridType
Returns the grid type of the test object. Returns
Unknown if the grid type cannot be determined.
GridType GridType { get; }
Property Value
Methods
ActivateCell(int, int)
Double-clicks the specified cell in this grid.
void ActivateCell(int row, int column)
Parameters
ActivateRow(int)
Double-clicks the specified row header in this grid.
void ActivateRow(int row)
Parameters
rowint0-based row number.
MakeCellVisible(int, int)
Scrolls the specified cell into view.
void MakeCellVisible(int row, int column)
Parameters
SelectCell(int, int)
Selects the specified cell in this grid.
void SelectCell(int row, int column)
Parameters
SelectRow(int)
Selects the specified row header in this grid.
void SelectRow(int row)
Parameters
rowint0-based row number.