 | PdfViewerClientToPage Method |
Computes the location of the specified client point into page coordinates.
Namespace: Patagames.Pdf.Net.Controls.WinFormsAssembly: Patagames.Pdf.WinForms (in Patagames.Pdf.WinForms.dll) Version: 4.100.2704
Syntaxpublic PointF ClientToPage(
int pageIndex,
Point pt
)
Public Function ClientToPage (
pageIndex As Integer,
pt As Point
) As PointF
public:
PointF ClientToPage(
int pageIndex,
Point pt
)
member ClientToPage :
pageIndex : int *
pt : Point -> PointF public PointF ClientToPage(
int pageIndex,
Point pt
)
function ClientToPage(pageIndex, pt);
Parameters
- pageIndex Int32
- Page index. Can be obtained by PointInPage(Point) method.
- pt Point
- The client coordinate Point to convert.
Return Value
PointFA Point that represents the converted Point, pt, in page coordinates.
Exceptions
RemarksPermitted range of pages depends on the current view type and on some other parameters in the control.
See Also