DWC logo BBjAppConfig::setDwcEnabled

Description

In BBj 21.10 and higher, this methods sets whether this application is enabled in the DWC client.

Syntax

Return Value

Method

void

setDwcEnabled(boolean DwcEnabled)

Parameters

Variable

Description

DwcEnabled

A boolean indicating whether this application is enabled in the DWC client.

Return Values

None.

Example

rem ' BBjAppConfig::setDwcEnabled

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

See Also

BBjAPI

BBjAppConfig::isDwcEnabled

BBjAppServer

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