Package com.hp.lft.sdk.winforms
Interface DataGridView
- All Superinterfaces:
CustomGrid
A .NET Windows Forms data grid view object.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
activateCell
(int row, String columnHeader) Double-clicks the specified cell in this grid.void
activateColumn
(int column) Double-clicks the specified column header in this grid.void
activateColumn
(String columnHeader) Double-clicks the specified column header in this grid.Returns a cell in the grid.getRows()
Returns the collection of rows.void
makeCellVisible
(int row, String columnHeader) Scrolls the specified cell into view.void
selectCell
(int row, String columnHeader) Selects (clicks) the specified cell in this grid.void
selectColumn
(int column) Selects (clicks) the specified column header in this grid.void
selectColumn
(String columnHeader) Clicks the specified column header in this grid.Methods inherited from interface com.hp.lft.sdk.winforms.CustomGrid
getTableTestObject
-
Method Details
-
activateCell
Double-clicks the specified cell in this grid.- Parameters:
row
- 0-based row number.columnHeader
- the column caption.- Throws:
GeneralLeanFtException
- if error occurs during execution
-
makeCellVisible
Scrolls the specified cell into view.- Parameters:
row
- 0-based row number.columnHeader
- the column caption.- Throws:
GeneralLeanFtException
- if error occurs during execution
-
selectCell
Selects (clicks) the specified cell in this grid.- Parameters:
row
- 0-based row number.columnHeader
- the column caption.- Throws:
GeneralLeanFtException
- if error occurs during execution
-
activateColumn
Double-clicks the specified column header in this grid.- Parameters:
column
- 0-based column index- Throws:
GeneralLeanFtException
- if error occurs during execution
-
activateColumn
Double-clicks the specified column header in this grid.- Parameters:
columnHeader
- the column caption.- Throws:
GeneralLeanFtException
- if error occurs during execution
-
selectColumn
Selects (clicks) the specified column header in this grid.- Parameters:
column
- 0-based column index- Throws:
GeneralLeanFtException
- if error occurs during execution
-
selectColumn
Clicks the specified column header in this grid.- Parameters:
columnHeader
- the column caption- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getCell
Returns a cell in the grid.- Parameters:
row
- 0-based row numbercolumnHeader
- the column caption- Returns:
- the cell
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getRows
Returns the collection of rows.- Returns:
- the collection of rows.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-