ComboBox.SetSize

ComboBox.SetSize ( 

string ObjectName,

number Width )

Example 1

ComboBox.SetSize("Grower", 100 );

Set the "Grower" combobox object's width to 100 pixels.

Example 2

ComboBox.SetSize("Expand", ComboBox.GetSize("Expand").Width + 200);

Increases the"Expand" combobox object's current width by 200 pixels. The ComboBox.GetSize action is used here to get the current width of the combobox object.

See also:  Related Actions