Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
- .NET API Reference
- EO.Base
- EO.Base.UI
- EO.Extensions
- EO.Pdf
- EO.Pdf
- Classes
- Interfaces
- Enumerations
- HtmlToPdfAutoFitMode Enumeration
- HtmlToPdfErrorCode Enumeration
- HtmlToPdfMode Enumeration
- HtmlToPdfTriggerMode Enumeration
- PageBreakMode Enumeration
- PdfActionType Enumeration
- PdfDestFitMode Enumeration
- PdfDocumentPermissions Enumeration
- PdfPageLayout Enumeration
- PdfPageMode Enumeration
- PdfPortfolioView Enumeration
- PdfStandard Enumeration
- PdfTextFieldMode Enumeration
- PdfViewerErrorCode Enumeration
- PdfViewerUIElement Enumeration
- SSLVerificationMode Enumeration
- Delegates
- EO.Pdf.Acm
- EO.Pdf.Contents
- EO.Pdf.Drawing
- EO.Pdf.Mvc
- EO.Web
- EO.WebBrowser
- EO.WebBrowser.DOM
- EO.WebEngine
- EO.WinForm
- EO.Wpf
- EO.Wpf.Gauge
- EO.Wpf.Gauge.Shapes
- EO.Wpf.Primitives
- EO.Wpf.Themes.Aero
- EO.Wpf.Themes.Classic
- EO.Wpf.Themes.Luna
- EO.Wpf.Themes.Metro
- EO.Wpf.Themes.Royale
- JavaScript API Reference
- .NET API Reference
PdfDestFitMode Enumeration |
Specifies auto fit mode for a PdfDestination object.
Namespace:
EO.Pdf
Assembly: EO.Pdf (in EO.Pdf.dll)
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. |