OpenXmlElement.Descendants Method

Definition

Overloads

Descendants()

Enumerates all of the current element's descendants.

Descendants<T>()

Enumerate all of the current element's descendants of type T.

Descendants()

Enumerates all of the current element's descendants.

public System.Collections.Generic.IEnumerable<DocumentFormat.OpenXml.OpenXmlElement> Descendants ();
member this.Descendants : unit -> seq<DocumentFormat.OpenXml.OpenXmlElement>
Public Iterator Function Descendants () As IEnumerable(Of OpenXmlElement)

Returns

Applies to

Descendants<T>()

Enumerate all of the current element's descendants of type T.

public System.Collections.Generic.IEnumerable<T> Descendants<T> () where T : DocumentFormat.OpenXml.OpenXmlElement;
member this.Descendants : unit -> seq<'T (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)> (requires 'T :> DocumentFormat.OpenXml.OpenXmlElement)
Public Iterator Function Descendants(Of T As OpenXmlElement) () As IEnumerable(Of T)

Type Parameters

T

The element type.

Returns

Applies to