User Guide
392 Components Dictionary
DataSet.properties
Availability
Flash Player 7.
Edition
Flash MX Professional 2004.
Usage
dataSetInstance.properties
Description
Property (read-only); returns an object that contains all of the exposed properties (fields) for
any transfer object within this collection.
Example
The following example displays all the names of the properties in the DataSet object named
my_ds:
var i:String;
for (i in my_ds.properties) {
trace("field '" + i + "' has value " + my_ds.properties[i]);
}
DataSet.readOnly
Availability
Flash Player 7.
Edition
Flash MX Professional 2004.
Usage
dataSetInstance.readOnly
Description
Property; a Boolean value that specifies whether this collection can be modified (false) or is
read-only (
true). Setting this property to true prevents updates to the collection. The default
value is
false.
You can also set this property in the Property inspector.