Description
Returns whether the BBjControl
is enabled or disabled.
Syntax
Return Value |
Method |
boolean |
isEnabled() |
Parameters
None.
Return Value
Returns true (1) if the control is enabled.
Returns false (0) if the control is disabled.
Remarks
By default, the BBjControl is enabled.
Example
rem 'Determine if a control is disabled/enabled
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
myButton! = myWindow!.addButton(101,50,100,90,30,"Button")
rem 'Create constants
FALSE = 0
TRUE = 1
rem 'Disable the button
myButton!.setEnabled(FALSE)
rem 'Check if the button is disable/enabled, this will return 0 (disabled)
ENABLED = myButton!.isEnabled()
rem 'Wait 3 seconds
WAIT(3)
rem 'Enable the button
myButton!.setEnabled(TRUE)
rem 'Check if the button is disable/enabled, this will return 1 (enabled)
ENABLED = myButton!.isEnabled()
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
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.