RadioButton.SetProperties

RadioButton.SetProperties ( 

string ObjectName,

table  Properties )

Example 1

-- Create a table containing items to change.
tbProperties = {};
tbProperties.Text = "Brand New Item Text";
tbProperties.Value = "MyNewData";

-- Set the properties of a radiobutton object.
RadioButton.SetProperties("RadioOne", tbProperties);

Sets the properties of the radiobutton object 'RadioOne' to the properties contained in the table 'tbProperties'.

See also:  Related Actions