OpenXmlElement.RemoveAllChildren 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.
Overloads
RemoveAllChildren() |
Removes all of the current element's child elements. |
RemoveAllChildren<T>() |
Remove all of the current element's child elements that are of type T. |
RemoveAllChildren()
Removes all of the current element's child elements.
public abstract void RemoveAllChildren ();
abstract member RemoveAllChildren : unit -> unit
Public MustOverride Sub RemoveAllChildren ()
Applies to
RemoveAllChildren<T>()
Remove all of the current element's child elements that are of type T.
public void RemoveAllChildren<T> () where T : DocumentFormat.OpenXml.OpenXmlElement;
member this.RemoveAllChildren : unit -> unit (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Sub RemoveAllChildren(Of T As OpenXmlElement) ()
Type Parameters
- T