Table of Contents

Interface ITable

Namespace
HP.LFT.SDK.WinForms
Assembly
HP.LFT.SDK.dll

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

CustomGrid

ErrorText

Returns the tooltip text of the error icon associated with this object.

string ErrorText { get; }

Property Value

string

GridType

Returns the grid type of the test object. Returns

Unknown
if the grid type cannot be determined.
GridType GridType { get; }

Property Value

GridType

Methods

ActivateCell(int, int)

Double-clicks the specified cell in this grid.

void ActivateCell(int row, int column)

Parameters

row int

0-based row number.

column int

0-based column index.

ActivateRow(int)

Double-clicks the specified row header in this grid.

void ActivateRow(int row)

Parameters

row int

0-based row number.

MakeCellVisible(int, int)

Scrolls the specified cell into view.

void MakeCellVisible(int row, int column)

Parameters

row int

0-based row number.

column int

0-based column index.

SelectCell(int, int)

Selects the specified cell in this grid.

void SelectCell(int row, int column)

Parameters

row int

0-based row number.

column int

0-based column index.

SelectRow(int)

Selects the specified row header in this grid.

void SelectRow(int row)

Parameters

row int

0-based row number.