Interface IAPOGrid
An APO grid control in a SAP GUI for Windows application.
Inherited Members
Namespace: HP.LFT.SDK.SAP.GUI
Assembly: HP.LFT.SDK.dll
Syntax
public interface IAPOGrid : ITableBase<IAPOGridCell>, IEnabledProvider, IElement, ITestObject, ITestObjectDescriber, ILocationInfoProvider, ISupportsNativeObject
Methods
ClearSelection()
Clears the selected rows or columns in the APO grid.
Declaration
void ClearSelection()
DeselectCell(uint, string)
Unselects the specified cell by row index and column name.
Declaration
void DeselectCell(uint row, string column)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | row | The 1-based row index. |
| string | column | The column name. |
DeselectCell(uint, uint)
Unselects the specified cell by row and column index.
Declaration
void DeselectCell(uint row, uint columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | row | The 1-based row index. |
| uint | columnIndex | The 1-based column index. |
SelectColumnMenuItem(string, string)
Right-clicks the specified column and selects the specified menu item by column name.
Declaration
void SelectColumnMenuItem(string column, string menuItem)
Parameters
| Type | Name | Description |
|---|---|---|
| string | column | The name of the column. |
| string | menuItem | The name of the menu item . |
SelectColumnMenuItem(uint, string)
Right-clicks the specified column and selects the specified menu item by column index.
Declaration
void SelectColumnMenuItem(uint columnIndex, string menuItem)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | columnIndex | The 1-based index of the column. |
| string | menuItem | The name of the menu item. |