DisplayBox.SetColumnProperty

Availability

Flash Player 7.

Usage

DisplayBox.SetColumnProperty(propName,propValue,FieldName,ID)

Parameters

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.

Returns

None.

Description

Function; Changes an extended property for a particular column in the supplied row number.

Example

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);

Author

Telsim, Inc.