 | PdfDestinationCreateFitV Method |
Create new destination that display the page designated by pageIndex,
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.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static PdfDestination CreateFitV(
PdfDocument document,
int pageIndex,
float? left = null
)
Public Shared Function CreateFitV (
document As PdfDocument,
pageIndex As Integer,
Optional left As Single? = Nothing
) As PdfDestination
public:
static PdfDestination^ CreateFitV(
PdfDocument^ document,
int pageIndex,
Nullable<float> left = nullptr
)
static member CreateFitV :
document : PdfDocument *
pageIndex : int *
?left : Nullable<float32>
(* Defaults:
let _left = defaultArg left null
*)
-> PdfDestination
public static PdfDestination CreateFitV(
PdfDocument document,
int pageIndex,
float? left = null
)
Patagames.Pdf.Net.PdfDestination.CreateFitV = function(document, pageIndex, left);
Parameters
- document PdfDocument
- Document which contains this destination. Null for remote document.
- pageIndex Int32
- The zero-based index of the page to be displayed by this destination.
- left NullableSingle (Optional)
- The y coordinate.
Return Value
PdfDestinationAn instance of the
PdfDestination class initialized with the specified parameters.
Remarks
A null value for left specifies that the current value of that parameter is to be retained unchanged.
See Also