var stringText = TextBox.Text();
TextBox.Text(stringText);
stringText = TextBox.Text
TextBox.Text = stringText
stringText = TextBox.Text
TextBox.Text = stringText
|
Element
|
Description
|
|---|---|
|
stringText
|
A string that indicates the text of the text box.
|
var bMode = TextBox.ReadOnly();
TextBox.ReadOnly(bMode);
bMode = TextBox.ReadOnly
TextBox.ReadOnly = bMode
bMode = TextBox.ReadOnly
TextBox.ReadOnly = bMode
|
Element
|
Description
|
|---|---|
|
bMode
|
true—indicates that the text is read-only.
false—indicates that the text is editable.
|
|
|
For Python, use True and False, with a capital letter.
|