Skip to main content

XmpPdfSchema Class

Defines the XMP PDF namespace.

Declaration

public class XmpPdfSchema extends JavaObject

Remarks

XmpPdfSchema stores metadata defined by the XMP PDF schema. Use this class to read or modify PDF-specific metadata, such as the PDF version, producer, keywords, and trapping status.

Inherited Members

com.devexpress.system.JavaObject.clone()
com.devexpress.system.JavaObject.equals(java.lang.Object)
com.devexpress.system.JavaObject.hashCode()
com.devexpress.system.JavaObject.initFields()
com.devexpress.system.JavaObject.memberwiseClone()
com.devexpress.system.JavaObject.toString()
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)

Inheritance

Object
com.devexpress.system.JavaObject
XmpPdfSchema

Methods

getKeywords() Method

Returns keywords associated with the PDF document.

Declaration

public XmpString getKeywords()

Returns

Type Description
XmpString

Document keywords.

getPdfVersion() Method

Returns the PDF version stored in the document metadata.

Declaration

public XmpString getPdfVersion()

Returns

Type Description
XmpString

The PDF specification version (for example, 1.7 or 2.0).

getProducer() Method

Returns the name of the application that generated the PDF document.

Declaration

public XmpString getProducer()

Returns

Type Description
XmpString

The name of the application that produced the PDF document.

getTrapped() Method

Returns the document trapping status.

Declaration

public XmpBool getTrapped()

Returns

Type Description
XmpBool

A value that indicates whether the document has been trapped for printing.

setKeywords(XmpString value) Method

Sets keywords associated with the PDF document.

Declaration

public void setKeywords(XmpString value)

Parameters

Name Type Description
value XmpString

Document keywords.

setPdfVersion(XmpString value) Method

Sets the PDF version stored in the document metadata.

Declaration

public void setPdfVersion(XmpString value)

Parameters

Name Type Description
value XmpString

The PDF specification version (for example, 1.7 or 2.0).

setProducer(XmpString value) Method

Sets the name of the application that generated the PDF document.

Declaration

public void setProducer(XmpString value)

Parameters

Name Type Description
value XmpString

The name of the application that produced the PDF document.

setTrapped(XmpBool value) Method

Sets the document trapping status.

Declaration

public void setTrapped(XmpBool value)

Parameters

Name Type Description
value XmpBool

A value that indicates whether the document has been trapped for printing.