BBjStandardGrid::setCellText
Description
Sets the text displayed in a cell or cells in the BBjStandardGrid.
Syntax
Return Value |
Method |
---|---|
void |
setCellText(int row, int column, string text) |
void |
setCellText(int startRow, int startCol, BBjVector strings!) |
void |
setCellText(BBjVector strings!) |
Parameters
Variable |
Description |
---|---|
row |
Specifies the 0-based row. |
column |
Specifies the 0-based column. |
text |
Specifies the text to display in cell. |
startRow |
Specifies the 0-based start row. |
startCol |
Specifies the 0-based start column. |
strings! |
Specifies the vector that contains the text for the cells. |
Return Value
None.
Remarks
Sets the text for as many cells as there are strings in the BBjVector going from left to right, beginning at the specified start row and column. If there are more strings than cells, then the remaining strings are ignored.
setCellText(BBjVector strings!) will begin at the currently selected cell. If there is no currently selected row then it will start at cell (0,0).
Example
|
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.