BBjMDI::getSouthBorder

Description

In BBj 4.0 and higher, this method returns the south BBjMDI border.

Syntax

Return Value

Method

BBjMDIBorder

getSouthBorder()

Parameters

None.

Return Value

Returns a BBjMDIBorder that can be used to set a window as a border within the BBjMDI.

Remarks

None.

Example

REM GetSouthBorder.bbj

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 common addWindow param values
X=10
Y=10
WIDTH=200
HEIGHT=50
mySysGui!.setContext(0)
myWindow! = mySysGui!.addWindow(X,Y,WIDTH,HEIGHT,TITLE$)

CALLBACK(ON_CLOSE,APP_CLOSE,mySysGui!.getContext())

REM THIS IS HOW YOU DOCK A WINDOW
if(myAPI!.isInMDI())
   southBorder! = myAPI!.getMDI().getSouthBorder()
   southBorder!.setWindow(myWindow!)
endif

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.