OpenXmlPartContainer.GetPartsOfType 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
GetPartsOfType<T>() |
Enumerates all the children parts of the specified type "T" of this part. |
GetPartsOfType<T>(ICollection<T>) |
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 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>)
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;
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.
Exceptions
Thrown when "partCollection" is null reference.
Applies to
Feedback
Submit and view feedback for