Interface IUiGrid
A UiGrid table.
Inherited Members
Namespace: HP.LFT.SDK.Web
Assembly: HP.LFT.SDK.dll
Syntax
public interface IUiGrid : IGridBase, IWebElement, ITestObject, IClickable, IWebTestObject, IWebDescriber, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject, IVisibleProvider, ISupportDragAndDrop
Methods
FindRowWithCellText(string)
Finds the first row with this text.
Declaration
ITableRow FindRowWithCellText(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | The text to find. |
Returns
| Type | Description |
|---|---|
| ITableRow | The requested row, or null if none exists. |
FindRowWithCellText(string, uint)
Finds the first row with this text.
Declaration
ITableRow FindRowWithCellText(string text, uint startFromRow)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | Text to search for |
| uint | startFromRow | Index from which to start the search. |
Returns
| Type | Description |
|---|---|
| ITableRow | The requested row, or null if none exists. |
ScrollToRow(ITableRow)
Scrolls to a specified row, as defined by the row’s number.
Declaration
void ScrollToRow(ITableRow row)
Parameters
| Type | Name | Description |
|---|---|---|
| ITableRow | row | The ITableRow to scroll. |
ScrollToRow(uint)
Scrolls to a specified row, as defined by the row’s number.
Declaration
void ScrollToRow(uint row)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | row | 0-based row number. |