OpenXmlPackage.AddPart<T>(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.
Adds the specified part to the document. Use the returned part to operate on the part added to the document.
public override T AddPart<T> (T part) where T : DocumentFormat.OpenXml.Packaging.OpenXmlPart;
override this.AddPart : 'T -> 'T (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPart)
Public Overrides Function AddPart(Of T As OpenXmlPart) (part As T) As T
Type Parameters
- T
A class that is derived from the OpenXmlPart class.
Parameters
- part
- T
The part to add to the document.
Returns
The added part in the document. Differs from the part that was passed as an argument.
Exceptions
Thrown when the part is not allowed to be added.
Thrown when the part type already exists and multiple instances of the part type is not allowed.