WorksheetPart.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(CustomPropertyPartType) |
Adds a CustomPropertyPart to the WorksheetPart |
AddCustomPropertyPart(String) |
Adds a CustomPropertyPart to the WorksheetPart |
AddCustomPropertyPart(CustomPropertyPartType, String) |
Adds a CustomPropertyPart to the WorksheetPart |
AddCustomPropertyPart(String, String) |
Adds a CustomPropertyPart to the WorksheetPart |
AddCustomPropertyPart(CustomPropertyPartType)
Adds a CustomPropertyPart to the WorksheetPart
public DocumentFormat.OpenXml.Packaging.CustomPropertyPart AddCustomPropertyPart (DocumentFormat.OpenXml.Packaging.CustomPropertyPartType partType);
member this.AddCustomPropertyPart : DocumentFormat.OpenXml.Packaging.CustomPropertyPartType -> DocumentFormat.OpenXml.Packaging.CustomPropertyPart
Public Function AddCustomPropertyPart (partType As CustomPropertyPartType) As CustomPropertyPart
Parameters
- partType
- CustomPropertyPartType
The part type of the CustomPropertyPart
Returns
The newly added part.
Applies to
AddCustomPropertyPart(String)
Adds a CustomPropertyPart to the WorksheetPart
public DocumentFormat.OpenXml.Packaging.CustomPropertyPart AddCustomPropertyPart (string contentType);
member this.AddCustomPropertyPart : string -> DocumentFormat.OpenXml.Packaging.CustomPropertyPart
Public Function AddCustomPropertyPart (contentType As String) As CustomPropertyPart
Parameters
- contentType
- String
The content type of the CustomPropertyPart
Returns
The newly added part.
Applies to
AddCustomPropertyPart(CustomPropertyPartType, String)
Adds a CustomPropertyPart to the WorksheetPart
public DocumentFormat.OpenXml.Packaging.CustomPropertyPart AddCustomPropertyPart (DocumentFormat.OpenXml.Packaging.CustomPropertyPartType partType, string id);
member this.AddCustomPropertyPart : DocumentFormat.OpenXml.Packaging.CustomPropertyPartType * string -> DocumentFormat.OpenXml.Packaging.CustomPropertyPart
Public Function AddCustomPropertyPart (partType As CustomPropertyPartType, id As String) As CustomPropertyPart
Parameters
- partType
- CustomPropertyPartType
The part type of the CustomPropertyPart
- id
- String
The relationship id
Returns
The newly added part.
Applies to
AddCustomPropertyPart(String, String)
Adds a CustomPropertyPart to the WorksheetPart
public DocumentFormat.OpenXml.Packaging.CustomPropertyPart AddCustomPropertyPart (string contentType, string id);
member this.AddCustomPropertyPart : string * string -> DocumentFormat.OpenXml.Packaging.CustomPropertyPart
Public Function AddCustomPropertyPart (contentType As String, id As String) As CustomPropertyPart
Parameters
- contentType
- String
The content type of the CustomPropertyPart
- id
- String
The relationship id
Returns
The newly added part.