BBjTopLevelWindow::isModal

Description

In BBj 2.01 and higher, this method returns whether the BBjWindow is modal.

Syntax

Return Value

Method

boolean

isModal()

Parameters

None.

Return Value

Returns whether the BBjWindow is modal (1 = Modal, 0 = Not modal).

Remarks

None.

Example

REM Determine if a window is modal

REM Obtain the instance of the BBjAPI object
LET myAPI!=BBjAPI()

REM Open the SysGui device
SYSGUI=UNT
OPEN (SYSGUI) "X0"

REM Obtain the instance of the BBjSysGui object
LET mySysGui!=myAPI!.getSysGui()

REM Set addWindow param values
X=10
Y=10
WIDTH=200
HEIGHT=200

REM Set the current context
mySysGui!.setContext(0)

REM Create a modal window
myWindow! = mySysGui!.addWindow(X,Y,WIDTH,HEIGHT,"Modal",$00080083$)

REM Determine if the window is modal
MODAL = myWindow!.isModal()

REM Register the CALLBACK routines
CALLBACK(ON_CLOSE,APP_CLOSE,mySysGui!.getContext())

REM Process Events
PROCESS_EVENTS

REM Callback routine called when the user closes the application window
APP_CLOSE:
RELEASE
RETURN

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

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