RadioButton.SetSize

RadioButton.SetSize ( 

string ObjectName,

number Width,

number Height )

Example 1

RadioButton.SetSize("Grower", 300, 15);

Sets the "Grower" radiobutton object's width to 300 pixels and it's height to 15 pixels.

Example 2

RadioButton.SetSize("Expand", RadioButton.GetSize("Expand").Width + 200, RadioButton.GetSize("Expand").Height + 10);

Increases the "Expand" radiobutton object's current width by 200 pixels and it's current height by 10 pixels. The RadioButton.GetSize action is used here to get the current size of the radiobutton object.

See also:  Related Actions