var bMode = RadioBtn.LeftText();
RadioBtn.LeftText(bMode);
bMode = RadioBtn.LeftText
RadioBtn.LeftText = bMode
bMode = RadioBtn.LeftText
RadioBtn.LeftText = bMode
|
Element
|
Description
|
|---|---|
|
bMode
|
true—indicates that the caption is left-aligned.
false—indicates that the caption is not left-aligned.
|
var stringText = RadioBtn.Text();
RadioBtn.Text(stringText);
stringText = RadioBtn.Text
RadioBtn.Text = stringText
"stringText" = RadioBtn.Text
RadioBtn.Text = "stringText"
|
Element
|
Description
|
|---|---|
|
stringText
|
A string that indicates the radio button's caption.
|
var bMode = RadioBtn.Orientation();
RadioBtn.Orientation(bMode);
bMode = RadioBtn.Orientation
RadioBtn.Orientation = bMode
bMode = RadioBtn.Orientation
RadioBtn.Orientation = bMode
|
Element
|
Description
|
|---|---|
|
bMode
|
0 = horizontal radio button, 1 = vertical radio button.
|
|
|
For Python, use True and False, with a capital letter.
|