Skip to main content

PdfDocument.Version Property

Indicates the version of the PDF specification to which the document conforms if later than the version specified in the file’s header.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v26.1.Core.dll

NuGet Package: DevExpress.Pdf.Core

Declaration

public PdfFileVersion Version { get; }

Property Value

Type Description
PdfFileVersion

A DevExpress.Pdf.PdfFileVersion object.

Available values:

Name Description
Pdf_1_0

PDF version 1.0.

Pdf_1_1

PDF version 1.1.

Pdf_1_2

PDF version 1.2.

Pdf_1_3

PDF version 1.3.

Pdf_1_4

PDF version 1.4.

Pdf_1_5

PDF version 1.5.

Pdf_1_6

PDF version 1.6.

Pdf_1_7

PDF version 1.7 (ISO 32000-1).

Pdf_2_0

PDF version 2.0 (ISO 32000-2).

Unknown

The PDF version is unknown.

Remarks

If the header specifies a later version, or if this entry is absent, the document shall conform to the version specified in the header.

This entry enables a conforming writer to update the version using an incremental update.

The value of this entry shall be a name object, not a number, and therefore shall be preceded by a SOLIDUS (2Fh) character (/) when written in the PDF file.

See Also