 | XmlSchemaManagerAddNewAfterSelf Method |
Creates a new Xml-Element with the provided content and inserts it behind the provided sibling according to
this schema instance.
Namespace: Aml.Engine.SchemaAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic virtual XElement AddNewAfterSelf(
XElement siblingBefore,
XName childName,
Object content
)
Public Overridable Function AddNewAfterSelf (
siblingBefore As XElement,
childName As XName,
content As Object
) As XElement
public:
virtual XElement^ AddNewAfterSelf(
XElement^ siblingBefore,
XName^ childName,
Object^ content
)
Parameters
- siblingBefore XElement
- the sibling of the new added element.
- childName XName
- the name of the new added element.
- content Object
- the content of the new added element.
Return Value
XElementThe created XML element.
See Also