Flash CS3 Documentation |
|||
| ActionScript 2.0 Components Language Reference > DataSet component > DataSet.properties | |||
Flash Player 7.
Flash MX Professional 2004.
dataSetInstance.properties
Property (read-only); returns an object that contains all of the exposed properties (fields) for any transfer object within this collection.
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