MultilineEntry Control

(UI 0.9.9)

はじめに

A Multiline Entry is a text entry control able to hold multiple lines of text, with or without wrapping.

クラス概要

classUI\Controls\MultilineEntryextendsUI\Control {
constintWrap;
constintNoWrap;
public__construct(int$type = ?)
publicappend(string$text)
publicgetText(): string
publicisReadOnly(): bool
protectedonChange()
publicsetReadOnly(bool$readOnly)
publicsetText(string$text)
}

定義済み定数

UI\Controls\MultilineEntry::Wrap

Allow lines to wrap

UI\Controls\MultilineEntry::NoWrap

Do not allow lines to wrap

目次

To Top