
BBjAppConfig::setBuiEnabled
Description
In BBj 21.10 and higher, this methods sets whether this application is enabled in the BUI client.
Syntax
Return Value |
Method |
---|---|
void |
setBuiEnabled(boolean BuiEnabled) |
Parameters
Variable | Description |
---|---|
Description | A boolean indicating whether this application is enabled in the BUI client. |
Return Values
None.
Remarks
None.
Example
Copy
BBjAppConfig::setBuiEnabled Example
rem ' BBjAppConfig::setBuiEnabled
admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
appConfig!.setBuiEnabled(1)
print "setBuiEnabled: ",appConfig!.isBuiEnabled()
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.