Table of Contents
PdfDestFitMode Enumeration

Specifies auto fit mode for a PdfDestination object.

Namespace: EO.Pdf
Assembly: EO.Pdf (in EO.Pdf.dll)

Syntax
 public enum PdfDestFitMode
Members
Member Name Description
None

Does not try to automatically fit the page.

This option displays the page with the coordinates (FitRect.Location) positioned at the upper-left corner of the window and the contents of the page magnified by the ZoomFactor.

EntirePage

Automatically fits the entire page.

Neither FitRect nor ZoomFactor is used for this value.

EntirePageH

Automatically fits the entire width of the page.

This option displays the page with the vertical coordinate top (FitRect.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.

EntirePageV

Automatically fits the entire height of the page.

This option displays the page with the horizontal coordinate left (FitRect.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.

EntirePageR

Automatically fits to the specified rectangle.

This option displays the page with its contents magnified just enough to fit the rectangle specified (FitRect) entirely within the window both horizontally and vertically. If the required horizontal and vertical magnification factors are different, use the smaller of the two, centering the rectangle within the window in the other dimension.

BoundingBox

Automatically fits the bounding box.

Similar to EntirePageR, but uses the page's bounding box instead of FitRect.

BoundingBoxH

Automatically fits the entire bounding box width of the page.

Similar to EntirePageH, but uses the page's bounding box instead of FitRect.

BoundingBoxV

Automatically fits the entire bounding box height of the page.

Similar to EntirePageV, but uses the page's bounding box instead of FitRect.

See Also