|

AttributeName


(string) The name of the attribute you want to remove.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

XML.RemoveElement

OverviewExamples

XML.RemoveElement ( string XMLPath )


De s cr ip t ion


Removes a specific element (and its children) from the currently loaded XML document.


Note: For more information on the XML actions, see the XML Actions Concepts topic.


image

P arame t er s


XMLPath


(string) The path to the element you want to remove.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

XML.Save

OverviewExamples

XML.Save ( string Filename )


De s cr ip t ion


Saves the currently loaded XML document to a file.


Note: For more information on the XML actions, see the XML Actions Concepts topic.


image

P arame t er s


Filename


(string) The full path for the XML file.


Re t u r n s


image

Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

XML.SetAttribute

OverviewExamples

XML.SetAttribute ( string XMLPath,


string AttributeName,


string AttributeValue )


De s cr ip t ion


Sets the value of an element's attribute.


Note: For more information on the XML actions, see the XML Actions Concepts topic.


image

P arame t er s


XMLPath


(string) The path to the element whose attribute you want to set.


|