OpenXmlCompositeElement.AddChild(OpenXmlElement, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds the specified element to the element if it is a known child. This adds the element in the correct location according to the schema.
public bool AddChild (DocumentFormat.OpenXml.OpenXmlElement newChild, bool throwOnError = true);
member this.AddChild : DocumentFormat.OpenXml.OpenXmlElement * bool -> bool
Public Function AddChild (newChild As OpenXmlElement, Optional throwOnError As Boolean = true) As Boolean
Parameters
- newChild
- OpenXmlElement
The OpenXmlElement element to append.
- throwOnError
- Boolean
A flag to indicate if the method should throw if the child could not be added.
Returns
Success if the element was added, otherwise false
.