Label.SetProperties

Label.SetProperties (

string ObjectName,

table Properties )

Example 1

-- Populate table from item properties
tProperties = Label.GetProperties("Slogan");

-- Change the desired items
tProperties.Enabled = true;
tProperties.Visible = false;
tProperties.Text = "I am new text!!!";

-- Set the properties of a label object
Label.SetProperties("Slogan", tProperties);

Sets the properties of the label object 'Slogan' to the properties contained in table 'tProperties'.

See also: Related Actions