
BBjAppConfig::isDwcEnabled
Description
In BBj 21.10 and higher, this method returns whether this application is enabled in the DWC client.
Syntax
Return Value |
Method |
---|---|
boolean |
isDwcEnabled() |
Parameters
None.
Return Values
Returns a boolean indicating whether this application is enabled in the DWC client.
Remarks
None.
Example
Copy
BBjAppConfig::isDwcEnabled Example
rem ' BBjAppConfig::isDwcEnabled
admin! = bbjapi().getAdmin("admin","admin123")
appServer! = admin!.getWebAppServer()
appConfig! = appServer!.makeEmptyAppConfig()
appConfig!.setDwcEnabled(1)
print "isDwcEnabled: ",appConfig!.isDwcEnabled()
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.