Difference between revisions of "Activity:CreateXMLAttribute (Activity)"
m (moved CreateXMLAttribute (Activity) to CreateXMLAttribute (Activity): Text replacement - "(.*)\(Activity\)" to "Activity:$1(Activity)") |
|||
Line 27: | Line 27: | ||
==Usage== | ==Usage== | ||
− | This activity is used to create a single XML attribute at an existing element, typically as a nested activity within a [[CreateXMLElement (Activity)|CreateXMLElement]] activity. | + | This activity is used to create a single XML attribute at an existing element, typically as a nested activity within a [[Activity:CreateXMLElement (Activity)|CreateXMLElement]] activity. |
==Example== | ==Example== | ||
Line 34: | Line 34: | ||
==See also== | ==See also== | ||
* [[Workflow Designer]] | * [[Workflow Designer]] | ||
− | * [[CreateXMLScope (Activity)]] | + | * [[Activity:CreateXMLScope (Activity)]] |
− | * [[CreateXMLElement (Activity)]] | + | * [[Activity:CreateXMLElement (Activity)]] |
[[Category:XML]] | [[Category:XML]] | ||
[[Category:Activities]] | [[Category:Activities]] |
Revision as of 11:44, 23 February 2015
Create XML Attribute | |
---|---|
Name | CreateXMLAttribute |
Purpose | Create an XML attribute |
Category | UBIK Data Exchange |
Returns | True if successful |
Version | 2.1.15+ |
The CreateXMLAttribute Activity creates a single XML attribute within an XML element.
Contents
Arguments
Argument | Type | Direction | Purpose |
---|---|---|---|
ParentElement | XmlElement | In | The parent element where the attribute should be created at; if empty, it will take the element from its nesting host |
AttributeName | String | In | The name of the new attribute |
AttributeValue | String | In | The value of the new attribute |
CreatedAttribute | XmlElement | Out | The created XML attribute |
Usage
This activity is used to create a single XML attribute at an existing element, typically as a nested activity within a CreateXMLElement activity.