In BBj 5.00 and higher, returns the BBjGridHeader for this grid.
|
Return Value |
Method |
|---|---|
|
getRowHeader() |
None.
Returns the BBjGridHeader representing the row header of this grid.
This method will fail if the developer did not declare headerIDs when creating the grid. For example:
rem DOES provide headerIDs in:
Grid!
= window!.addGrid(100, 101, 102, 100, 100, 100)
rem DOES NOT provide header IDs in:
AnotherGrid!
= window!.addGrid(100, 100, 100, 100)
rem this statement will SUCCEED:
Header!
= grid!.getRowHeader()
rem this statement will FAIL:
AnotherHeader!
= AnotherGrid!.getRowHeader()
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.