Compartilhar via


OpenXmlElement.Elements Método

Definição

Sobrecargas

Elements()

Enumera todos os filhos do elemento atual.

Elements<T>()

Enumera apenas os filhos do elemento atual que têm o tipo especificado.

Elements()

Enumera todos os filhos do elemento atual.

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

Retornos

Aplica-se a

Elements<T>()

Enumera apenas os filhos do elemento atual que têm o tipo especificado.

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

Parâmetros de tipo

T

O tipo de elemento.

Retornos

Aplica-se a