PdfXmpMetadata
DeleteProperty Method
|
Deletes the given XMP subtree rooted at the given property.
Namespace:
Spire.Pdf.Interchange.Metadata
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public void DeleteProperty(
string schemaNs,
string propName
)
Public Sub DeleteProperty (
schemaNs As String,
propName As String
)
public:
void DeleteProperty(
String^ schemaNs,
String^ propName
)
member DeleteProperty :
schemaNs : string *
propName : string -> unit
Parameters
-
schemaNs
-
Type:
System
String
The namespace URI for the property. Has the same usage as in
[!:GetProperty]
.
-
propName
-
Type:
System
String
The name of the property. Has the same usage as in
[!:GetProperty]
.
Remarks
It is not an error if the property does not exist.
See Also