-
Funkce
-
Defines a string entry field.
-
Zápis
-
dlgStringEdit(string &Text)
-
Description
-
The dlgStringEdit statement defines a text entry field with the given Text.
Viz také dlgRealEdit,
dlgIntEdit,
dlgTextEdit,
dlgLabel,
Layout Information,
A Complete Example
Příklad
string Name = "Linus";
dlgHBoxLayout {
dlgLabel("Enter &Name");
dlgStringEdit(Name);
}