Compartilhar via


OpenXmlPartContainer.GetPartsOfType Método

Definição

Sobrecargas

GetPartsOfType<T>()

Enumera todas as partes de crianças do tipo T especificado dessa parte.

GetPartsOfType<T>(ICollection<T>)
Obsoleto.

Obtém todas as partes de crianças do tipo TpartCollection especificado nesta parte.

GetPartsOfType<T>()

Enumera todas as partes de crianças do tipo T especificado dessa parte.

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

Parâmetros de tipo

T

Classe derivada de OpenXmlPart.

Retornos

Aplica-se a

GetPartsOfType<T>(ICollection<T>)

Cuidado

Use GetPartsOfType<T> to manually add to a collection

Obtém todas as partes de crianças do tipo TpartCollection especificado nesta parte.

public void GetPartsOfType<T> (System.Collections.Generic.ICollection<T> partCollection) where T : DocumentFormat.OpenXml.Packaging.OpenXmlPart;
[System.Obsolete("Use GetPartsOfType<T> to manually add to a collection")]
public void GetPartsOfType<T> (System.Collections.Generic.ICollection<T> partCollection) where T : DocumentFormat.OpenXml.Packaging.OpenXmlPart;
member this.GetPartsOfType : System.Collections.Generic.ICollection<'T (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPart)> -> unit (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPart)
[<System.Obsolete("Use GetPartsOfType<T> to manually add to a collection")>]
member this.GetPartsOfType : System.Collections.Generic.ICollection<'T (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPart)> -> unit (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPart)
Public Sub GetPartsOfType(Of T As OpenXmlPart) (partCollection As ICollection(Of T))

Parâmetros de tipo

T

Classe derivada de OpenXmlPart.

Parâmetros

partCollection
ICollection<T>

A coleção de partes a ser preenchida.

Atributos

Exceções

Lançado quando partCollection é nulo.

Aplica-se a