CheckBox.SetProperties

CheckBox.SetProperties ( 

string ObjectName,

table  Properties )

Example 1

-- Create a table containing items to change.
tbProperties = {};
tbProperties.ButtonAlignment = BTN_ALIGN_RIGHT;

-- Set the properties of a checkbox object.
CheckBox.SetProperties("CheckBoxOne", tbProperties);

Sets the properties of the checkbox object 'CheckBoxOne' to the properties contained in the table 'tbProperties'.

See also:  Related Actions