method deleteContentChild

bool deleteContentChild(box child);

Argumente

Zurückgegebener Wert

This method deletes a child box from the content children list of this box. This method assumes that the child box passed in exists as a content child already.
var cont = scene.getBoxById("theTabs");
if (cont)
{
    var bx = scene.getBoxById("talkTab");
    if (bx)
        cont.deleteContentChild(bx);
}