property flowed

(r/w) bool flowed;

Typ

Zugriff

This property sets and gets if the box is flowed or not. Flowed boxes are laid out by parent while non-flowed boxes are absolutely positioned.
var bx = scene.createBox("customBoxType");
if (bx)
{
    // setup attributes on the box.
    bx.flowed = true;

    // ...
}