PdfDestinationType Enumeration
In This Topic
Defines a particular view of a specified page in a PDF document. It is always tied to a given page.
It consists of the location of the document window on that page and of the magnification (zoom) factor to use when displaying that page.
Syntax
'Declaration
<ComVisibleAttribute(True)>
Public Enum PdfDestinationType
Inherits System.Enum
[ComVisible(true)]
public enum PdfDestinationType : System.Enum
public enum PdfDestinationType = class(System.Enum)
ComVisibleAttribute()
public enum PdfDestinationType extends System.Enum
[ComVisible(true)]
__value public enum PdfDestinationType : public System.Enum
[ComVisible(true)]
public enum class PdfDestinationType : public System.Enum
Members
Member | Value | Description |
DestinationTypeFit | 1 | Displays the specific page with its content magnified just enough to fit the entire page 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 page within the window in the other dimension. |
DestinationTypeFitB | 5 | (PDF 1.1) Displays the specific page with its content magnified just enough to fit its bounding box 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 bounding box within the window in the other dimension. |
DestinationTypeFitBH | 6 | (PDF 1.1) Displays the specific page with the vertical coordinate (top) positioned at the top edge of the window and the content of that page magnified
just enough to fit the entire width of its bounding box within the window.
A null value for top specifies that the current value of that parameter is to be retained unchanged. |
DestinationTypeFitBV | 7 | (PDF 1.1) Displays the specific page with the horizontal coordinate (left) positioned at the left edge of the window and the content of that page magnified
just enough to fit the entire height of its bounding box within the window.
A null value for left specifies that the current value of that parameter is to be retained unchanged. |
DestinationTypeFitH | 2 | Displays the specific page with the vertical coordinate (top) positioned at the top edge of the window and the content of that page magnified
just enough to fit the entire width of the page within the window.
A null value for top specifies that the current value of that parameter is to be retained unchanged. |
DestinationTypeFitR | 4 | Displays the specific page with its content magnified just enough to fit the rectangle specified by the coordinates left, bottom, right,
and top 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.
A null value for any of the parameters may result in unpredictable behavior. |
DestinationTypeFitV | 3 | Displays the specific page with the horizontal coordinate (left) positioned at the left edge of the window and the content of that page magnified
just enough to fit the entire height of the page within the window.
A null value for left specifies that the current value of that parameter is to be retained unchanged. |
DestinationTypeUndefined | -1 | Undefined page destination type. |
DestinationTypeXYZ | 0 | Displays the specific page with the coordinates (left, top) positioned at the upper-left corner of the window
and the content of that page magnified by the zoom factor. A null value for any of the parameters left, top, or zoom specifies,
that the current value of that parameter is to be retained unchanged. A zoom value of 0 has the same meaning as a null value. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
GdPicture14.PdfDestinationType
See Also