CheckBox.SetSize

CheckBox.SetSize ( 

string ObjectName,

number Width,

number Height )

Example 1

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

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

Example 2

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

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

See also:  Related Actions