InsertionMode
(number) The insertion mode to use:
CONSTANT |
VALUE DESCRIPTION |
|
XML.INSERT_BEFORE |
0 |
Insert the new XML text before the specified element. |
XML.INSERT_AFTER |
1 |
Insert the new XML text after the specified element. |
XML.REPLACE |
2 |
Replace the specified element's XML text with the new XML text. |
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
XML.Load
OverviewExamples
XML.Load ( string Filename )
De s cr ip t ion
Loads an XML file into memory so it can be processed.
Note: For more information on the XML actions, see the XML Actions Concepts topic.
P arame t er s
Filename
(string) The full path to the XML file.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
XML.RemoveAttribute
OverviewExamples
XML.RemoveAttribute ( string XMLPath,
string AttributeName )
De s cr ip t ion
Removes a specific attribute from an element.
Note: For more information on the XML actions, see the XML Actions Concepts topic.
P arame t er s
XMLPath
(string) The path to the element whose attribute you want to remove.