property overflowHeight

(r/o) int32 overflowHeight;

Typ

Zugriff

This property returns the overflow height represents the size of the height current box's flowed child boxes, should they exceed the max height.
function ReadOverflowData(boxId)
{
    var bx = scene.getBoxById(boxId);
    if (bx)
    {
        shell.print("Overflow Height: " + scene.overflowHeight);
        shell.print("Overflow Width: " + scene.overflowWidth);
    }
}