method clear

bool clear();

Argumente

Zurückgegebener Wert

This method clears the current document in the DHTML control of all content.
function OnClearBtnClicked()
{
    var theBox = scene.getBoxById("dhmtlCtrlBox");
    if (theBox)
    {
        theBox.clear();
    }
}