Click or drag to resize

PdfDestinationViewType Enumeration

Enumerates the allowed syntactic forms for specifying a destination explicitly in a PDF file.

Namespace: SautinSoft.Pdf
Assembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2024.8.8
Syntax
public enum PdfDestinationViewType
Members
Member nameValueDescription
LeftTopZoom0

Display the page designated by page, with the coordinates (left, top) positioned at the upper-left corner of the window and the contents of the page magnified by the factor zoom.

Parameters: Left, Top and Zoom

This value corresponds to value XYZ from PDF Specification ISO 32000-1:2008, section '12.3.2.2 Explicit Destinations'.

FitPage1

Display the page designated by page, with its contents magnified just enough to fit the entire page within the window both horizontally and vertically.

Parameters: none.

This value corresponds to value Fit from PDF Specification ISO 32000-1:2008, section '12.3.2.2 Explicit Destinations'.

FitPageHorizontal2

Display the page designated by page, with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of the page within the window.

Parameters: Top.

This value corresponds to value FitH from PDF Specification ISO 32000-1:2008, section '12.3.2.2 Explicit Destinations'.

FitPageVertical3

Display the page designated by page, with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of the page within the window.

Parameters: Left.

This value corresponds to value FitV from PDF Specification ISO 32000-1:2008, section '12.3.2.2 Explicit Destinations'.

FitRectangle4

Display the page designated by page, with its contents magnified just enough to fit the rectangle specified by the coordinates left, bottom, right, and top entirely within the window both horizontally and vertically.

Parameters: Left, Bottom, Right and Top.

This value corresponds to value FitR from PDF Specification ISO 32000-1:2008, section '12.3.2.2 Explicit Destinations'.

FitContent5

(PDF 1.1) Display the page designated by page, with its contents magnified just enough to fit its bounding box entirely within the window both horizontally and vertically.

Parameters: none.

This value corresponds to value FitB from PDF Specification ISO 32000-1:2008, section '12.3.2.2 Explicit Destinations'.

FitContentHorizontal6

(PDF 1.1) Display the page designated by page, with the vertical coordinate top positioned at the top edge of the window and the contents of the page magnified just enough to fit the entire width of its bounding box within the window.

Parameters: Top.

This value corresponds to value FitBH from PDF Specification ISO 32000-1:2008, section '12.3.2.2 Explicit Destinations'.

FitContentVertical7

(PDF 1.1) Display the page designated by page, with the horizontal coordinate left positioned at the left edge of the window and the contents of the page magnified just enough to fit the entire height of its bounding box within the window.

Parameters: Left.

This value corresponds to value FitBV from PDF Specification ISO 32000-1:2008, section '12.3.2.2 Explicit Destinations'.

See Also