BBjStandardGrid::isRowHidden

Description

In BBj 19.10 and higher, this method returns a boolean indicating whether a specified row is hidden.

Note: This method only works in GUI, and is not available in BUI.

Syntax

Return Value

Method

boolean

isRowHidden(int p_row)

Parameters

Variable

Description

p_row

The index of the specified row.

Return Value

A boolean indicating whether the row is hidden (0 = Not hidden, 1 = Hidden).

Remarks

This method is not available in BUI.

Example

declare BBjSysGui sysgui!
declare BBjWindow win!
declare BBjStandardGrid grid!
sysgui!=BBjAPI().openSysGui("X0")
win!=sysgui!.addWindow(0,0,640,480,"Grid Testing Program")
grid!=win!.addGrid(101,0,0,640,400,$8040$,10,10)
grid!.hideRow(5)
print grid!.isRowHidden(5)
print grid!.isRowHidden(2)
process_events

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

BBjGrid

BBjStandardGrid

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.