Package com.hp.lft.sdk.winforms
Interface ComponentOneGrid
- All Superinterfaces:
- CustomGrid
- All Known Subinterfaces:
- C1FlexGrid,- C1TrueDbGrid
Base interface for ComponentOne C1FlexGrid control and ComponentOne C1TrueDBGrid control.
- 
Method SummaryModifier and TypeMethodDescriptionvoidactivateCell(int row, String columnHeader) Double-clicks the specified cell in this grid.voidcollapseRow(int row) Collapses the specified row.voidexpandRow(int row) Expands the specified row.Returns a cell in the grid.getRows()Returns the rows.voidmakeCellVisible(int row, String columnHeader) Scrolls the specified cell into view.voidopenCellElement(int row, int column) Selects the specified cell and opens a cell's pop-up cell element.voidopenCellElement(int row, String columnHeader) Selects the specified cell and opens a cell's pop-up cell element.voidselectCell(int row, String columnHeader) Selects (clicks) the specified cell in this grid.voidselectColumn(int column) Selects (clicks) the specified column header in the grid.voidselectColumn(String columnHeader) Selects (clicks) the specified column header in the grid.voidApplies the specified filter string to the specified column.voidApplies the specified filter string to the specified column.voidsort(int column) Sorts this table by the specified column (ascending).voidSorts this table by the specified column (ascending).voidsortDescending(int column) Sorts this table by the specified column (descending).voidsortDescending(String columnHeader) Sorts this table by the specified column (descending).Methods inherited from interface com.hp.lft.sdk.winforms.CustomGridgetTableTestObject
- 
Method Details- 
activateCellDouble-clicks the specified cell in this grid.- Parameters:
- row- 0-based row number.
- columnHeader- the column caption.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
makeCellVisibleScrolls the specified cell into view.- Parameters:
- row- 0-based row number.
- columnHeader- the column caption.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
collapseRowCollapses the specified row.- Parameters:
- row- 0-based row number
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
expandRowExpands the specified row.- Parameters:
- row- 0-based row number
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getCellReturns a cell in the grid.- Parameters:
- row- 0-based row number
- columnHeader- the column caption
- Returns:
- the cell
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
openCellElementSelects the specified cell and opens a cell's pop-up cell element.- Parameters:
- row- 0-based row number
- column- 0-based column index
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
openCellElementSelects the specified cell and opens a cell's pop-up cell element.- Parameters:
- row- 0-based row number
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectCellSelects (clicks) the specified cell in this grid.- Parameters:
- row- 0-based row number.
- columnHeader- the column caption.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectColumnSelects (clicks) the specified column header in the grid.- Parameters:
- column- 0-based column index.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectColumnSelects (clicks) the specified column header in the grid.- Parameters:
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
setFilterApplies the specified filter string to the specified column.- Parameters:
- column- 0-based column index.
- filter- the filter name.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
setFilterApplies the specified filter string to the specified column.- Parameters:
- columnHeader- the column caption
- filter- the filter
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
sortSorts this table by the specified column (ascending).- Parameters:
- column- 0-based column index
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
sortSorts this table by the specified column (ascending).- Parameters:
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
sortDescendingSorts this table by the specified column (descending).- Parameters:
- column- 0-based column index
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
sortDescendingSorts this table by the specified column (descending).- Parameters:
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getRowsReturns the rows.- Returns:
- the rows
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
 
-