Jump to: navigation, search

Difference between revisions of "Activity:CreateXMLAttribute (Activity)"


(Created page with "The CreateXMLAttribute Activity creates a single [http://en.wikipedia.org/wiki/XML XML] attribute within an XML element. {{ActivityInfoBox | title = Create XML Attribute | na...")
 
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
The CreateXMLAttribute Activity creates a single [http://en.wikipedia.org/wiki/XML XML] attribute within an XML element.
 
The CreateXMLAttribute Activity creates a single [http://en.wikipedia.org/wiki/XML XML] attribute within an XML element.
  
 +
= Description =
 
{{ActivityInfoBox
 
{{ActivityInfoBox
 
| title = Create XML Attribute
 
| title = Create XML Attribute
 
| name = CreateXMLAttribute
 
| name = CreateXMLAttribute
| image =  
+
| image = [[File:UI_Activity_CreateXMLAttribute.png|220px]]
 
| imagecaption = Activity CreateXMLAttribute
 
| imagecaption = Activity CreateXMLAttribute
 
| purpose = Create an XML attribute
 
| purpose = Create an XML attribute
| category = Data Exchange
+
| category = UBIK Data Exchange
 
| returns = True if successful
 
| returns = True if successful
 
| version = 2.1.15+
 
| version = 2.1.15+
 
}}
 
}}
  
 
+
===Arguments===
 
+
 
+
 
+
 
+
 
+
==Arguments==
+
 
+
 
{| class="wikitable sortable" | width = "50%"
 
{| class="wikitable sortable" | width = "50%"
 
|-
 
|-
 
! Argument!! Type !! Direction !! Purpose  
 
! Argument!! Type !! Direction !! Purpose  
 
|- align="left"
 
|- align="left"
| ParentElement|| XMLElement|| In || The parent element where the attribute should be created at; if empty, it will take the element from its nesting host
+
| ParentElement|| {{XmlElement_MSDN}}|| In || The parent element where the attribute should be created at; if empty, it will take the element from its nesting host
 
|- align="left"
 
|- align="left"
| AttributeName|| String|| In || The name of the new attribute
+
| AttributeName|| {{String_MSDN}}|| In || The name of the new attribute
 
|- align="left"
 
|- align="left"
| AttributeValue|| String|| In || The value of the new attribute
+
| AttributeValue|| {{String_MSDN}}|| In || The value of the new attribute
 
|- align="left"
 
|- align="left"
| CreatedAttribute|| XMLElement|| Out || The created XML attribute
+
| CreatedAttribute|| {{XmlElement_MSDN}}|| Out || The created XML attribute
 
|}
 
|}
  
==Usage==
+
===Usage===
 
+
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.  
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.  
+
  
==Example==
+
= Example =
  
 +
<headertabs />
  
 
==See also==
 
==See also==
 
* [[Workflow Designer]]
 
* [[Workflow Designer]]
* [[CreateXMLScope (Activity)]]
+
* [[Activity:CreateXMLScope (Activity)]]
* [[CreateXMLElement (Activity)]]
+
* [[Activity:CreateXMLElement (Activity)]]
  
[[Category:Workflows]] [[Category:Activities]] [[Category:Interfacing]]
+
[[Category:XML]]

Latest revision as of 12:24, 23 February 2015

The CreateXMLAttribute Activity creates a single XML attribute within an XML element.

[edit]

Description

Create XML Attribute
Name CreateXMLAttribute
Purpose Create an XML attribute
Category UBIK Data Exchange
Returns True if successful
Version 2.1.15+

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.

Example

See also