Package com.hp.lft.sdk.winforms
Interface UltraWinGrid
- All Superinterfaces:
- CustomGrid
An Infragistics UltraWinGrid object.
- 
Method SummaryModifier and TypeMethodDescriptionvoidactivateCell(int row, String columnHeader) Double-clicks the specified cell in this grid.voidactivateCell(String rowPath, String columnHeader) Double-clicks the specified cell in this grid.voidactivateColumn(int bandLevel, String columnHeader) Double-clicks the specified column header in this grid.voidactivateRow(String rowPath) Double-clicks the specified row header in this grid.voidAdds a new row to the table band using the Add button for the corresponding band.voidAdds a new row to the table band using the Add button for the corresponding band.voidcollapseRow(int row) Collapses the specified row.voidcollapseRow(String rowPath) Collapses the specified row.voidexpandRow(int row) Expands the specified row.voidExpands the specified row.getCell(int row, int column) Returns the specified cell.Returns the specified cell.Returns the specified cell.intReturns the number of columns in the current band.intReturns the number of rows in the current band.voidmakeCellVisible(int row, String columnHeader) Scrolls the specified cell into view.voidmakeCellVisible(String rowPath, String columnHeader) Scrolls the specified cell into view.voidopenSummaryDialog(int bandLevel, String columnHeader) Opens the summary dialog box for the specified column.voidselectCell(int row, String columnHeader) Selects (clicks) the specified cell in this grid.voidselectCell(String rowPath, String columnHeader) Clicks the specified row header in this grid.voidselectColumn(int bandLevel, String columnHeader) Clicks the specified row header in this grid.voidClicks the specified row header in this grid.voidApplies the filter to the specified column.voidSorts the table by the specified column, ascending.voidsortDescending(int bandLevel, String columnHeader) Sorts the 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
 
- 
activateCellDouble-clicks the specified cell in this grid.- Parameters:
- rowPath- in format "n1;n2;...;nX" where n is the row number in each band level.
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
activateColumnDouble-clicks the specified column header in this grid.- Parameters:
- bandLevel- 0-based band level
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
activateRowDouble-clicks the specified row header in this grid.- Parameters:
- rowPath- in format "n1;n2;...nX" where n is the row number in each band level.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
addRowAdds a new row to the table band using the Add button for the corresponding band.- Parameters:
- addButtonName- the name of the Add button corresponding to the band to add a row to
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
addRowAdds a new row to the table band using the Add button for the corresponding band.- Parameters:
- addButtonName- the name of the Add button corresponding to the band to add a row to
- newRowPath- the band path where the row is added in format "n1;n2;...;nX" where n is the row number in each band level.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
collapseRowCollapses the specified row.- Parameters:
- row- 0-based row number
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
collapseRowCollapses the specified row.- Parameters:
- rowPath- in format "n1;n2;...;nX" where n is the row number in each band level
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
expandRowExpands the specified row.- Parameters:
- row- 0-based row number
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
expandRowExpands the specified row.- Parameters:
- rowPath- in format "n1;n2;...;nX" where n is the row number in each band level
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getCellReturns the specified cell.- Parameters:
- row- 0-based row number
- columnHeader- the column caption
- Returns:
- the cell
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getCellReturns the specified cell.- Parameters:
- rowPath- in format "n1;n2;...;nX" where n is the row number in each band level.
- columnHeader- the column caption
- Returns:
- the cell
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getCellReturns the specified cell.- Parameters:
- row- 0-based row number
- column- 0-based column index
- Returns:
- the cell
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
makeCellVisibleScrolls the specified cell into view.- Parameters:
- rowPath- in format "n1;n2;...;nX" where n is the row number in each band level.
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
openSummaryDialogOpens the summary dialog box for the specified column.- Parameters:
- bandLevel- the band level you want to open the dialog box for
- 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
 
- 
selectCellClicks the specified row header in this grid.- Parameters:
- rowPath- in format "n1;n2;...;nX" where n is the row number in each band level
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectColumnClicks the specified row header in this grid.- Parameters:
- bandLevel- 0-based band level
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectRowClicks the specified row header in this grid.- Parameters:
- rowPath- in format "n1;n2;...;nX" where n is the row number in each band level
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
setFilterApplies the filter to the specified column.- Parameters:
- bandLevel- 0-based band level
- columnHeader- the column caption
- filter- a value in the column to be used as the filter
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
sortSorts the table by the specified column, ascending.- Parameters:
- bandLevel- 0-based band level
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
sortDescendingSorts the table by the specified column, descending.- Parameters:
- bandLevel- 0-based band level
- columnHeader- the column caption
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getRowCountReturns the number of rows in the current band.- Returns:
- the row count
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getColumnCountReturns the number of columns in the current band.- Returns:
- the column count
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
 
-