
BBjApplication::isQuiet
Description
In BBj 12.0 and higher, this method returns a boolean indicating whether quiet mode was specified.
Syntax
Return Value |
Method |
---|---|
boolean |
isQuiet() |
Parameters
None.
Return Values
Returns a boolean indicating whether quiet mode was specified.
Remarks
None.
Example
rem ' BBjApplication::isQuiet 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$) print appName$," isQuiet? ",app!.isQuiet() next i endif |
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.