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

Flash CS3