BBjTopLevelWindow::getMaximumHeight

Description

In BBj 15.0 and higher, this method returns the maximum outer height of a BBjTopLevelWindow, including any height used by a title bar, menu bar, status bar, and docked child windows.

Syntax

Return Value

Method

int

getMaximumHeight()

Parameters

None.

Return Value

Returns the maximum outer height of the BBjTopLevelWindow, including any title bar, menu bar, status bar, and docked child windows.

Remarks

None.

Example

rem ' getMaximumHeight

sysgui = unt
open (sysgui)"X0"
sysgui! = bbjapi().getSysGui()
window! = sysgui!.addWindow(100,100,150,100,"",$00090003$)
title$ = str(window!.getWidth())+","+str(window!.getHeight())
window!.setTitle(title$)
window!.setCallback(window!.ON_CLOSE,"eoj")
window!.setCallback(window!.ON_RESIZE,"resize")
print "getMaximumWidth:",window!.getMaximumWidth()
print "getMaximumHeight:",window!.getMaximumHeight()
window!.setMaximumSize(350,300)
print "getMaximumWidth:",window!.getMaximumWidth()
print "getMaximumHeight:",window!.getMaximumHeight()
process_events

eoj:
release

resize:
    event! = sysgui!.getLastEvent()
    title$ = str(event!.getWidth())+","+str(event!.getHeight())
    window!.setTitle(title$)
return

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

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