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