Properties tag allows you to add properties to an object.
These properties can be a mix of SmartObject and normal Objects.
All the SmartObjects will be parsed before the properties are set.
These properties must be public.
public var _id:*
If you need to specify a property that is called "id", you need
to use _id instead because Flex will normally use the id
property as the identifier for this tag.
public function setProperties(target:Object, scope:IScope):Object
Similar to smartCopy this method will copy the properties
to the target object.
The difference is that it will copy its own properties to the target.
Parameters
Returns
public static function smartCopy(source:Object, target:Object, scope:IScope):Object
This method will parse all the SmartObjects and set the real values in the
target Object
Parameters
| source:Object |
| |
| target:Object |
| |
| scope:IScope |
Returns