ActiveMode Method for an Applet
The ActiveMode method returns a string that contains the name of the current Web template mode.
Format
Applet.ActiveMode
No arguments are available.
Used With
Browser Script
Examples
The following example is in Browser Script:
function Applet_Load ()
{
var currMode = this.ActiveMode();
theApplication().SWEAlert("The active mode for the selected applet is: " +
currMode);
}