BBjControl::getFont

Description

Returns the font of the BBjControl.

Syntax

Return Value

Method

BBjFont

getFont()

Parameters

None.

Return Value

Returns the font of the BBjControl.

Remarks

None.

Example

rem 'Set the font of a menu bar

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 common addWindow param values
X = 10
Y = 10
WIDTH = 200
HEIGHT = 200

rem 'Create a window with a title in the current context
TITLE$="BBj Window"

rem 'Set the current context
mySysGui!.setContext(0)
myWindow! = mySysGui!.addWindow(X,Y,WIDTH,HEIGHT,TITLE$)

rem 'Add a button on the window
myMenubar! = myWindow!.addMenuBar()

rem 'Create a BBjFont Object
myFont! = mySysGui!.makeFont("arial",14,mySysGui!.ITALIC)

rem 'Set the font of the menu bar
myMenuBar!.setFont(myFont!)
myMenuBar!.addMenu(-1,"Menu")

rem 'Get the font of the menu bar
print myMenuBar!.getFont()

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

See Also

BBjAPI

BBjSysGui

BBjWindow

FONT Mnemonic - Set SYSWINDOW Font

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