PHP 8.3.4 Released!

Control Box (Arrangement)

(UI 0.9.9)

Einführung

A Box allows the arrangement of other controls

Klassenbeschreibung

class UI\Controls\Box extends UI\Control {
/* Konstanten */
const int Vertical;
/* Eigenschaften */
protected $controls;
/* Constructor */
public __construct(int $orientation = UI\Controls\Box::Horizontal)
/* Methoden */
public append(Control $control, bool $stretchy = false): int
public delete(int $index): bool
public isPadded(): bool
public setPadded(bool $padded)
/* Geerbte Methoden */
}

Eigenschaften

controls

Contains controls, should not be manipulated directly

Inhaltsverzeichnis

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top