Reserved Attribute: setas

Description

This attribute basically tell CookXml to instead of adding this child object to the parent using the parent's adder, call the parent's setter for the attribute name specified by the value.

Attribute Values

The attribute value is the attribute name of the parent object to be set.

Examples

The following XML code set some string as the "text" attribute value of a label.

<label>
	<text setas="text">a long long text with " quotes.</text>
</label>