Flash Player 7.
DisplayBox.SetColumnProperty(propName,propValue,FieldName,ID)
propName The name of the property to set. The following
are currently supported : selectable,restrict and password.
propValueThe value to assign to the supplied propName.
FieldNameThe name of the column to change.
ID The ID of the row to change.
None.
Function; Changes an extended property for a particular column in the supplied row number.
This example will set the displayable text in the 'Login' column in row number one to show *** rather then text. It will also restrict the field to only allow upercase A-Z for editing and display.
myDisplayBox.SetColumnProperty("password",true,"Login",1);
myDisplayBox.SetColumnProperty("restrict","A-Z","Login",1);
myDisplayBox.SetColumnProperty("selectable",true,"Login",1);