BBjWindow::raise

Description

In BBj 9.0 and higher, this method this method brings the window to the front (see RAISE Mnemonic).

Syntax

Return Value

Method

void

raise()

Parameters

None.

Return Value

None.

Remarks

None.

Example

rem ' BBjWindow::raise

sysgui = unt
open (sysgui)"X0"
sysgui! = bbjapi().getSysGui()
title$ = "BBjWindow::raise"
window! = sysgui!.addWindow(100,100,200,200,title$,$00010003$)
window!.setCallback(window!.ON_CLOSE,"eoj")
window!.raise()
process_events

eoj:
release

See Also

BBjAPI

BBjWindow

Object Variables

Raise Mnemonic

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