OpenXmlElement.Descendants 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
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
IEnumerable<T>