This function is used to apply a designer property in customization scripts.
Parameters:
Example:
The code below changes a textbox to a date field by changing the design field type designer property into a date field rather than textbox:
var myTextBox = getObj("TextBox1"); //get the textbox object reference applyProperty(myTextBox, "field type", "date field"); |