officefileapi-devexpress-dot-pdf-ab5ee7e6.md
The base class for destinations – references to a page with specific view parameters.
Namespace : DevExpress.Pdf
Assembly : DevExpress.Pdf.v25.2.Core.dll
NuGet Package : DevExpress.Pdf.Core
public abstract class PdfDestination :
PdfObject
Public MustInherit Class PdfDestination
Inherits PdfObject
The following members return PdfDestination objects:
Show 12 links
A destination includes the following view parameters:
The table below lists available destinations and API used to create each type.
| Destination | View Parameters | Class | Method |
|---|---|---|---|
| FitB | Fit the page’s bounding box into the document window. | PdfFitBBoxDestination | PdfPageFacade.CreateFitBBoxDestination |
| FitBH | Fit the page’s bounding box into the document window horizontally. | PdfFitBBoxHorizontallyDestination | PdfPageFacade.CreateFitBBoxHorizontallyDestination |
| FitBV | Fit the page’s bounding box into the document window vertically. | PdfFitBBoxVerticallyDestination | PdfPageFacade.CreateFitBBoxVerticallyDestination |
| Fit | Fit the entire page into the document window. | PdfFitDestination | PdfPageFacade.CreateFitDestination |
| FitH | Fit the entire page into the document window horizontally. | PdfFitHorizontallyDestination | PdfPageFacade.CreateFitHorizontallyDestination |
| FitV | Fit the entire page into the document window vertically. | PdfFitVerticallyDestination | PdfPageFacade.CreateFitVerticallyDestination |
| FitR | Display the specified page area in the document window. | PdfFitRectangleDestination | PdfPageFacade.CreateFitRectangleDestination |
| XYZ | Position the specified page coordinate at the top left corner of the document window and specify the zoom factor. | PdfXYZDestination | PdfPageFacade.CreateXYZDestination |
Use the PdfBookmark.Destination property to associate a bookmark with a destination. To create a link annotation associated with a destination, call the PdfPageFacade.AddLinkAnnotation method and pass a PdfDestination descendant object as a parameter. You can associate multiple bookmarks and link annotations with a destination.
Show 12 items
Object DevExpress.Pdf.Native.PdfDocumentItem DevExpress.Pdf.Native.PdfObject PdfDestination PdfFitBBoxDestination
PdfFitBBoxHorizontallyDestination
PdfFitBBoxVerticallyDestination
See Also