OpenXmlSupportedRelationshipExtensions.AddCustomPropertyPart 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
AddCustomPropertyPart<T>(T, PartTypeInfo, String) |
Adds a CustomPropertyPart as a relationship to the parent part |
AddCustomPropertyPart<T>(T, String, String) |
Adds a CustomPropertyPart as a relationship to the parent part |
AddCustomPropertyPart<T>(T, PartTypeInfo, String)
Adds a CustomPropertyPart as a relationship to the parent part
public static DocumentFormat.OpenXml.Packaging.CustomPropertyPart AddCustomPropertyPart<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.CustomPropertyPart>;
static member AddCustomPropertyPart : 'T * DocumentFormat.OpenXml.Packaging.PartTypeInfo * string -> DocumentFormat.OpenXml.Packaging.CustomPropertyPart (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer and 'T :> DocumentFormat.OpenXml.Packaging.ISupportedRelationship<DocumentFormat.OpenXml.Packaging.CustomPropertyPart>)
<Extension()>
Public Function AddCustomPropertyPart(Of T As {OpenXmlPartContainer, ISupportedRelationship(Of CustomPropertyPart)}) (parent As T, partType As PartTypeInfo, Optional id As String = Nothing) As CustomPropertyPart
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
AddCustomPropertyPart<T>(T, String, String)
Adds a CustomPropertyPart as a relationship to the parent part
public static DocumentFormat.OpenXml.Packaging.CustomPropertyPart AddCustomPropertyPart<T> (this T parent, string contentType, string? id = default) where T : DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer, DocumentFormat.OpenXml.Packaging.ISupportedRelationship<DocumentFormat.OpenXml.Packaging.CustomPropertyPart>;
static member AddCustomPropertyPart : 'T * string * string -> DocumentFormat.OpenXml.Packaging.CustomPropertyPart (requires 'T :> DocumentFormat.OpenXml.Packaging.OpenXmlPartContainer and 'T :> DocumentFormat.OpenXml.Packaging.ISupportedRelationship<DocumentFormat.OpenXml.Packaging.CustomPropertyPart>)
<Extension()>
Public Function AddCustomPropertyPart(Of T As {OpenXmlPartContainer, ISupportedRelationship(Of CustomPropertyPart)}) (parent As T, contentType As String, Optional id As String = Nothing) As CustomPropertyPart
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.