var bMode = CheckBox.LeftText();
CheckBox.LeftText(bMode);
bMode = CheckBox.LeftText
CheckBox.LeftText = bMode
bMode = CheckBox.LeftText
CheckBox.LeftText = bMode
|
Element
|
Description
|
|---|---|
|
bMode
|
true—indicates that the caption is left aligned.
false—indicates that the caption is not left aligned.
|
|
|
For Python, use True and False, with a capital letter.
|
var stringText = CheckBox.Text();
CheckBox.Text(stringText);
stringText = CheckBox.Text
CheckBox.Text = stringText
stringText = CheckBox.Text
CheckBox.Text = stringText
|
Element
|
Description
|
|---|---|
|
stringText
|
A string that indicates the checkbox caption.
|