Table of Contents

Interface IAPOGrid

An APO grid control in a SAP GUI for Windows application.

Inherited Members
ITableBase<IAPOGridCell>.ActivateCell(uint, string)
ITableBase<IAPOGridCell>.ActivateCell(uint, uint)
ITableBase<IAPOGridCell>.SelectCell(uint, string)
ITableBase<IAPOGridCell>.SelectCell(uint, uint)
ITableBase<IAPOGridCell>.SelectRow(params uint[])
ITableBase<IAPOGridCell>.SelectRowRange(uint, uint)
ITableBase<IAPOGridCell>.SelectColumn(params string[])
ITableBase<IAPOGridCell>.SelectColumn(params uint[])
ITableBase<IAPOGridCell>.DeselectRow(params uint[])
ITableBase<IAPOGridCell>.DeselectRowRange(uint, uint)
ITableBase<IAPOGridCell>.DeselectColumn(params string[])
ITableBase<IAPOGridCell>.DeselectColumn(params uint[])
ITableBase<IAPOGridCell>.FindRowWithCellTextInColumn(string, string)
ITableBase<IAPOGridCell>.FindRowWithCellTextInColumn(string, uint)
ITableBase<IAPOGridCell>.FindRowWithCellTextInColumn(string, string, uint)
ITableBase<IAPOGridCell>.FindRowWithCellTextInColumn(string, uint, uint)
ITableBase<IAPOGridCell>.FindAllRowsWithCellTextInColumn(string, uint)
ITableBase<IAPOGridCell>.FindAllRowsWithCellTextInColumn(string, string)
ITableBase<IAPOGridCell>.Title
ITableBase<IAPOGridCell>.Rows
IEnabledProvider.IsEnabled
IElement.Type
IElement.Id
IElement.Name
ITestObject.GetDescription()
ITestObject.SetDescription(IDescription)
ITestObject.FindChildren<TChild>(IDescription)
ITestObject.Exists()
ITestObject.Exists(uint)
ITestObject.GetSnapshot()
ITestObject.Highlight()
ITestObject.HighlightMatches<TChild>(IDescription)
ITestObject.GetTextLocations(string)
ITestObject.GetTextLocations(string, Rectangle)
ITestObject.GetVisibleText()
ITestObject.GetVisibleText(Rectangle)
ITestObject.VerifyImageExists(Image, byte)
ITestObject.VerifyImageMatch(Image, byte, byte)
ITestObject.VerifyImageMatch(Image, ImageMaskArea, byte, byte)
ITestObject.CallFTMethod(string, params object[])
ITestObject.CallFTMethod<TResult>(string, params object[])
ITestObject.Parent
ITestObject.DisplayName
ITestObjectDescriber.Describe<TChild>(IDescription)
ILocationInfoProvider.Location
ILocationInfoProvider.AbsoluteLocation
ILocationInfoProvider.Size
ISupportsNativeObject.NativeObject
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.

Extension Methods

TestObjectExtensions.WaitUntilEnabled<T>(T)
TestObjectExtensions.WaitUntilEnabled<T>(T, int)
TestObjectExtensions.WaitUntilExists<T>(T)
TestObjectExtensions.WaitUntilExists<T>(T, int)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>)
TestObjectExtensions.WaitUntil<T>(T, Func<T, bool>, int)