Share via


OpenXmlSupportedRelationshipExtensions.AddImagePart Method

Definition

Overloads

AddImagePart<T>(T, PartTypeInfo, String)

Adds an ImagePart"/> as a relationship to the parent part

AddImagePart<T>(T, String, String)

Adds a ImagePart as a relationship to the parent part

AddImagePart<T>(T, PartTypeInfo, String)

Adds an ImagePart"/> as a relationship to the parent part

public static DocumentFormat.OpenXml.Packaging.ImagePart AddImagePart<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.ImagePart>;
static member AddImagePart : 'T * DocumentFormat.OpenXml.Packaging.PartTypeInfo * string -> DocumentFormat.OpenXml.Packaging.ImagePart (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer and 'T :> DocumentFormat.OpenXml.Packaging.ISupportedRelationship<DocumentFormat.OpenXml.Packaging.ImagePart>)
<Extension()>
Public Function AddImagePart(Of T As {OpenXmlPartContainer, ISupportedRelationship(Of ImagePart)}) (parent As T, partType As PartTypeInfo, Optional id As String = Nothing) As ImagePart

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

AddImagePart<T>(T, String, String)

Adds a ImagePart as a relationship to the parent part

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

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