PdfXmpMetadata

PdfXmpMetadata

Overview

PdfXmpMetadata is a class in Aspose.PDF FOSS for C++.

This class provides 15 methods for working with PdfXmpMetadata objects in C++ programs. Available methods include: Add, Clear, Contains, ContainsKey, Count, GetNamespaceURIByPrefix, GetPrefixByNamespaceURI, IsFixedSize, IsReadOnly, Keys, PdfXmpMetadata, RegisterNamespaceURI, and 3 additional methods. All public members are accessible to any C++ application after installing the Aspose.PDF FOSS for C++ package.

Methods

SignatureDescription
PdfXmpMetadata()Calls PdfXmpMetadata on this PdfXmpMetadata instance.
RegisterNamespaceURI(prefix: std::string, namespaceURI: std::string)Calls RegisterNamespaceURI(prefix, namespaceURI) on this PdfXmpMetadata instance.
GetNamespaceURIByPrefix(prefix: std::string)std::stringCalls GetNamespaceURIByPrefix(prefix) on this PdfXmpMetadata instance.
GetPrefixByNamespaceURI(namespaceURI: std::string)std::stringCalls GetPrefixByNamespaceURI(namespaceURI) on this PdfXmpMetadata instance.
Add(key: std::string, value: Aspose::Pdf::XmpValue)Calls Add(key, value) on this PdfXmpMetadata instance.
Clear()Calls Clear on this PdfXmpMetadata instance.
Contains(key: std::string)boolCalls Contains(key) on this PdfXmpMetadata instance.
Remove(key: std::string)boolCalls Remove(key) on this PdfXmpMetadata instance.
ContainsKey(key: std::string)boolCalls ContainsKey(key) on this PdfXmpMetadata instance.
TryGetValue(key: std::string, value: Aspose::Pdf::XmpValue)boolCalls TryGetValue(key, value) on this PdfXmpMetadata instance.
Keys()std::vector<std::string>Calls Keys on this PdfXmpMetadata instance.
Values()std::vector<Aspose::Pdf::XmpValue>Calls Values on this PdfXmpMetadata instance.
IsFixedSize()boolReturns true if fixed size is set.
IsReadOnly()boolReturns true if read only is set.
Count()intCalls Count on this PdfXmpMetadata instance.

See Also