OpenXmlPartContainer.DeleteExternalRelationship 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
DeleteExternalRelationship(String) |
Deletes the specified ExternalRelationship. |
DeleteExternalRelationship(ExternalRelationship) |
Deletes the specified external relationship. |
DeleteExternalRelationship(String)
Deletes the specified ExternalRelationship.
public void DeleteExternalRelationship (string id);
member this.DeleteExternalRelationship : string -> unit
Public Sub DeleteExternalRelationship (id As String)
Parameters
- id
- String
The relationship ID of the ExternalRelationship.
Exceptions
Thrown when the "id" parameter is null.
Thrown when there is no ExternalRelationship with the specified relationship ID.
Applies to
DeleteExternalRelationship(ExternalRelationship)
Deletes the specified external relationship.
public void DeleteExternalRelationship (DocumentFormat.OpenXml.Packaging.ExternalRelationship externalRelationship);
member this.DeleteExternalRelationship : DocumentFormat.OpenXml.Packaging.ExternalRelationship -> unit
Public Sub DeleteExternalRelationship (externalRelationship As ExternalRelationship)
Parameters
- externalRelationship
- ExternalRelationship
The external relationship to be deleted.
Exceptions
Thrown when "externalRelationship" is null reference.
Thrown when the external relationship is not referenced by this part.