method queryFeatureEnabled

bool queryFeatureEnabled(string feature);

Argumente

Zurückgegebener Wert

This method can be used to determine if a given feature for the DHTML control is enabled or not. For a list of the features that can be queried for with this function are the same as in enableFeature.

See enableFeature for more information on available feature items.

var htbox = scene.getBoxById("theHtmlBox");
if (htbox)
{
    if (htbox.queryFeatureEnabled("runActiveX"))
    {
        // handle custom activeX behavior here.
    }
}