Share via


OpenXmlSupportedRelationshipExtensions.AddCustomXmlPart Method

Definition

Overloads

AddCustomXmlPart<T>(T, PartTypeInfo, String)

Adds a CustomXmlPart as a relationship to the parent part

AddCustomXmlPart<T>(T, String, String)

Adds a CustomXmlPart as a relationship to the parent part

AddCustomXmlPart<T>(T, PartTypeInfo, String)

Adds a CustomXmlPart as a relationship to the parent part

public static DocumentFormat.OpenXml.Packaging.CustomXmlPart AddCustomXmlPart<T> (this T parent, DocumentFormat.OpenXml.Packaging.PartTypeInfo partType, string? id = default) where T : DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer, DocumentFormat.OpenXml.Packaging.ISupportedRelationship<DocumentFormat.OpenXml.Packaging.CustomXmlPart>;
static member AddCustomXmlPart : 'T * DocumentFormat.OpenXml.Packaging.PartTypeInfo * string -> DocumentFormat.OpenXml.Packaging.CustomXmlPart (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer and 'T :> DocumentFormat.OpenXml.Packaging.ISupportedRelationship<DocumentFormat.OpenXml.Packaging.CustomXmlPart>)
<Extension()>
Public Function AddCustomXmlPart(Of T As {OpenXmlPartContainer, ISupportedRelationship(Of CustomXmlPart)}) (parent As T, partType As PartTypeInfo, Optional id As String = Nothing) As CustomXmlPart

Type Parameters

T

Parameters

parent
T

The parent part requesting to add.

partType
PartTypeInfo

The part type information for the added extensible part.

id
String

The relationship id. Optional, default to null.

Returns

Applies to

AddCustomXmlPart<T>(T, String, String)

Adds a CustomXmlPart as a relationship to the parent part

public static DocumentFormat.OpenXml.Packaging.CustomXmlPart AddCustomXmlPart<T> (this T parent, string contentType, string? id = default) where T : DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer, DocumentFormat.OpenXml.Packaging.ISupportedRelationship<DocumentFormat.OpenXml.Packaging.CustomXmlPart>;
static member AddCustomXmlPart : 'T * string * string -> DocumentFormat.OpenXml.Packaging.CustomXmlPart (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer and 'T :> DocumentFormat.OpenXml.Packaging.ISupportedRelationship<DocumentFormat.OpenXml.Packaging.CustomXmlPart>)
<Extension()>
Public Function AddCustomXmlPart(Of T As {OpenXmlPartContainer, ISupportedRelationship(Of CustomXmlPart)}) (parent As T, contentType As String, Optional id As String = Nothing) As CustomXmlPart

Type Parameters

T

Parameters

parent
T

The parent part requesting to add.

contentType
String

The content type information for the added extensible part.

id
String

The relationship id. Optional, default to null.

Returns

Applies to