Элемент управления "Ввод"

(PHP 7, UI 0.9.9)

Введение

Ввод (Entry) - элемент управления текстовой записи, подходящий для ввода простого текста, паролей или поисковых запросов.

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

UI\Controls\Entry extends UI\Control {
/* Константы */
const integer Normal ;
const integer Password ;
const integer Search ;
/* Конструктор */
public __construct ([ int $type = UI\Controls\Entry::Normal ] )
/* Методы */
public getText ( void ) : string
public isReadOnly ( void ) : bool
protected onChange ( void )
public setReadOnly ( bool $readOnly )
public setText ( string $text )
/* Наследуемые методы */
public UI\Control::destroy ( void )
public UI\Control::disable ( void )
public UI\Control::enable ( void )
public UI\Control::getParent ( void ) : UI\Control
public UI\Control::getTopLevel ( void ) : int
public UI\Control::hide ( void )
public UI\Control::isEnabled ( void ) : bool
public UI\Control::isVisible ( void ) : bool
public UI\Control::setParent ( UI\Control $parent )
public UI\Control::show ( void )
}

Предопределенные константы

UI\Controls\Entry::Normal

Обычный однострочный ввод

UI\Controls\Entry::Password

Ввод пароля

UI\Controls\Entry::Search

Ввод поиска

Содержание