IPXV_PagesLayoutManager::HitTest Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 3: Line 3:
 
{{#customTitle:IPXV_PagesLayoutManager::HitTest Method}}
 
{{#customTitle:IPXV_PagesLayoutManager::HitTest Method}}
 
{{#parentPage:PXV:IPXV_PagesLayoutManager#Methods|HitTest|method}}
 
{{#parentPage:PXV:IPXV_PagesLayoutManager#Methods|HitTest|method}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Returns the page and coordinates on it by specified point in the Control's coordinates system.
  
 
== Syntax ==
 
== Syntax ==
Line 15: Line 14:
 
== Parameters ==
 
== Parameters ==
 
;stDevPoint
 
;stDevPoint
:[in]  Pointer to POINT.
+
:[in]  Pointer to POINT containing the point in the Control's coordinate system.
 
;stPagePoint
 
;stPagePoint
:[out, defaultvalue(NULL)]  Pointer to [[PXV:PXC_Point|PXC_Point]].
+
:[out, defaultvalue(NULL)]  Pointer to [[PXV:PXC_Point|PXC_Point]] containing the resulting point on page.
 
;nPage
 
;nPage
:[out, retval]  Pointer to LONG.
+
:[out, retval]  Pointer to LONG containing the resulting page. Will be negative if the point is not on any of the document's pages.
  
 
== Return Value ==
 
== Return Value ==

Revision as of 00:47, 22 April 2016


Returns the page and coordinates on it by specified point in the Control's coordinates system.

Syntax

HRESULT HitTest([in]                       POINT*      stDevPoint,
                [out, defaultvalue(NULL)]  PXC_Point*  stPagePoint,
                [out, retval]              LONG*       nPage);

Parameters

stDevPoint
[in] Pointer to POINT containing the point in the Control's coordinate system.
stPagePoint
[out, defaultvalue(NULL)] Pointer to PXC_Point containing the resulting point on page.
nPage
[out, retval] Pointer to LONG containing the resulting page. Will be negative if the point is not on any of the document's pages.

Return Value

Returns S_OK if operation was successful or error code in other cases.

See Also

IPXV_PagesLayoutManager