method removeStyle

bool removeStyle(string name);

Argumente

Zurückgegebener Wert

This method removes all style information for a given style attribute. If the name parameter is empty the method will fail.
var bx = scene.getBoxById("bkGrndBx");
if (bx)
{
    bx.removeStyle("fill");
}