OpenXmlPartContainer.DeleteParts<T>(IEnumerable<T>) 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.
Deletes all the parts which are in the passed in collection from the document.
public void DeleteParts<T> (System.Collections.Generic.IEnumerable<T> partsToBeDeleted) where T : DocumentFormat.OpenXml.Packaging.OpenXmlPart;
member this.DeleteParts : seq<'T (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPart)> -> unit (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPart)
Public Sub DeleteParts(Of T As OpenXmlPart) (partsToBeDeleted As IEnumerable(Of T))
Type Parameters
- T
Parameters
- partsToBeDeleted
- IEnumerable<T>
The parts to be deleted.
Exceptions
Thrown when "partsToBeDeleted" is null reference.