BBjToolButton::getImageFile

Description

Returns the name of the image file used for the icon in the BBjToolButton control.

Syntax

Return Value

Method

string

getImageFile()

Parameters

None.

Return Value

Returns the name of the image file being used for the tool button icon.

Remarks

None.

Example

REM Get the name of the image file used in a tool button

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 addWindow param values
X=10
Y=10
WIDTH=200
HEIGHT=200
TITLE$="BBj Window"

REM Set the current context
mySysGui!.setContext(0)

REM Create a window
myWindow! = mySysGui!.addWindow(X,Y,WIDTH,HEIGHT,TITLE$)

REM Add a tool button on the window
myToolButton! = myWindow!.addToolButton(101,50,100,90,30,"Tool Button")

REM Set the image file that contains the icon for the tool button
myToolButton!.setImageFile("/laura/samples/bbj.ico")

REM Get the image file that contains the icon for the tool button,
REM this will return "/laura/samples/bbj.ico"
IMAGE_FILE$ = myToolButton!.getImageFile()

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
RETURN

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

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