BBjTopLevelWindow::getMinimumHeight

Description

In BBj 15.0 and higher, this method returns the minimum outer height of the BBjTopLevelWindow, including the height required for any title bar, menu bar, status bar, and docked child windows.

Syntax

Return Value

Method

void

getMinimumHeight()

Parameters

None.

Return Value

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

Remarks

The default minimum height is defined by the platform look and feel.

Example

rem ' getMinimumHeight

sysgui = unt
open (sysgui)"X0"
sysgui! = bbjapi().getSysGui()
window! = sysgui!.addWindow(100,100,300,300,"",$00090003$)
title$ = str(window!.getWidth())+","+str(window!.getHeight())
window!.setTitle(title$)
window!.setCallback(window!.ON_CLOSE,"eoj")
window!.setCallback(window!.ON_RESIZE,"resize")
print "getMinimumWidth:",window!.getMinimumWidth()
print "getMinimumHeight:",window!.getMinimumHeight()
window!.setMinimumSize(150,100)
print "getMinimumWidth:",window!.getMinimumWidth()
print "getMinimumHeight:",window!.getMinimumHeight()
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.