BBjAppConfig::isBuiEnabled

Description

In BBj 21.10 and higher, this method returns whether this application is enabled in the BUI client.

Syntax

Return Value

Method

boolean

isBuiEnabled()

Parameters

None.

Return Values

Returns a boolean indicating whether this application is enabled in the BUI client.

Remarks

None.

Example

rem ' BBjAppConfig::isBuiEnabled

admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
appConfig!.setBuiEnabled(1)
print "isBuiEnabled: ",appConfig!.isBuiEnabled()

See Also

BBjAPI

BBjAppConfig

BBjAppConfig::setBuiEnabled

BBjAppServer

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