OpenXmlPartContainer.GetPartsOfType Method

Definition

Overloads

GetPartsOfType<T>()

Enumerates all the children parts of the specified type T of this part.

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

Gets all the children parts of the specified type T into partCollection of this part.

GetPartsOfType<T>()

Enumerates all the children parts of the specified type T of this part.

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)

Type Parameters

T

Derived class from OpenXmlPart.

Returns

Applies to

GetPartsOfType<T>(ICollection<T>)

Caution

Use GetPartsOfType<T> to manually add to a collection

Gets all the children parts of the specified type T into partCollection of this part.

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))

Type Parameters

T

Derived class from OpenXmlPart.

Parameters

partCollection
ICollection<T>

The part collection to be filled in.

Attributes

Exceptions

Thrown when partCollection is null.

Applies to