Dutch PHP Conference 2025 - Call For Papers

Control Box (Arrangement)

(UI 0.9.9)

Вступ

A Box allows the arrangement of other controls

Короткий огляд класу

class UI\Controls\Box extends UI\Control {
/* Константи */
const int Vertical;
/* Властивості */
protected $controls;
/* Constructor */
public __construct(int $orientation = UI\Controls\Box::Horizontal)
/* Методи */
public append(Control $control, bool $stretchy = false): int
public delete(int $index): bool
public isPadded(): bool
public setPadded(bool $padded)
/* Успадковані методи */
}

Властивості

controls

Contains controls, should not be manipulated directly

Попередньо визначені константи

UI\Controls\Box::Vertical

UI\Controls\Box::Horizontal

Зміст

add a note

User Contributed Notes

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