Input.SetProperties

Input.SetProperties ( 

string ObjectName,

table  Properties )

Example 1

-- Create properties table (only include items that should be changed)
tProperties = {};
tProperties.Enabled = true;
tProperties.Visible = false;
tProperties.Text = "I am new text!!!";

-- Set the properties of an input object
Input.SetProperties("Input1", tProperties);

Sets the properties of the input object 'Input1' to the properties contained in table 'tProperties'.

See also:  Related Actions