Overview
Inserts raw XML code into a specific location in the specified XML table.
(string) The name of the XML table.
(string) The path to the element where you want to insert the XML text. You can insert the XML before this element, insert it after this element, or replace the element (and all its children) with the new XML text.
(string) The XML text that you want to insert.
(variant) 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. |
Nothing.
See also: Related Actions