
BBjApplication::isBuiEnabled
Description
In BBj 21.10 and higher, this method returns a boolean indicating whether this application is enabled in the BUI client.
Syntax
Return Value |
Method |
---|---|
string |
isBuiEnabled() |
Parameters
None.
Return Values
Returns a boolean indicating whether this application is enabled in the BUI client.
Remarks
None.
Example
Copy
BBjApplication::isBuiEnabled Example
rem ' BBjApplication::isBuiEnabled
admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
vector! = appServer!.getAllAppNames()
if vector!.size() then
for i = 0 to vector!.size() - 1
appName$ = vector!.get(i)
app! = appServer!.getApplication(appName$,err=*continue)
print appName$," isBuiEnabled: ",
print app!.isBuiEnabled()
next i
endif
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.