CakeFest 2024: The Official CakePHP Conference

Элемент управления "Сетка" (размещение)

(UI 0.9.9)

Введение

Сетка - это элемент управления, позволяющий размещать дочерние элементы в сетке

Обзор классов

class UI\Controls\Grid extends UI\Control {
/* Константы */
const int Fill;
const int Start;
const int Center;
const int End;
const int Leading;
const int Top;
const int Trailing;
const int Bottom;
/* Свойства */
protected $controls;
/* Методы */
public append(
    UI\Control $control,
    int $left,
    int $top,
    int $xspan,
    int $yspan,
    bool $hexpand,
    int $halign,
    bool $vexpand,
    int $valign
)
public isPadded(): bool
public setPadded(bool $padding)
/* Наследуемые методы */
}

Свойства

controls

Содержит элементы управления, не стоит изменять напрямую

Содержание

add a note

User Contributed Notes

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