OpenXmlCompositeElement.RemoveChild<T>(T) 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.
Removes the specified child element.
public override T RemoveChild<T> (T child) where T : DocumentFormat.OpenXml.OpenXmlElement;
public override T? RemoveChild<T> (T? child) where T : DocumentFormat.OpenXml.OpenXmlElement;
public override T RemoveChild<T> (T oldChild) where T : DocumentFormat.OpenXml.OpenXmlElement;
public override T? RemoveChild<T> (T? oldChild) where T : DocumentFormat.OpenXml.OpenXmlElement;
override this.RemoveChild : 'T -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
override this.RemoveChild : 'T -> 'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Overrides Function RemoveChild(Of T As OpenXmlElement) (child As T) As T
Public Overrides Function RemoveChild(Of T As OpenXmlElement) (oldChild As T) As T
Type Parameters
- T
Parameters
- childoldChild
- T
The element to remove. Must be a child of this element.
Returns
T
The element that was removed.
Remarks
Returns null
if child
is null
.