duplicate Element

This topic describes the <duplicate> XML element.

General syntax
<duplicate> 
   ...child instructions...
<duplicate>
DescriptionAdds a new attribute with given value to the component. The value is optional, if not defined it will be set to "null." The attribute is only added if it not exists. Else add will be silently omitted.
Examples
<!-- duplicates the component and add attribute A1 with a value V1--> 
<duplicate> 
     <add target="attribute" name="A1" value="V1" /> 
</duplicate>