IPXV_PagesLayoutManager::HitTest Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
(6 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
[[Category:Editor]] | [[Category:Editor]] | ||
{{#customTitle:IPXV_PagesLayoutManager::HitTest Method}} | {{#customTitle:IPXV_PagesLayoutManager::HitTest Method}} | ||
− | {{#parentPage:PXV:IPXV_PagesLayoutManager#Methods|HitTest | + | {{#parentPage:PXV:IPXV_PagesLayoutManager#Methods|HitTest|method}} |
− | + | ||
{{ToReview}} | {{ToReview}} | ||
− | + | Returns the page and coordinates on it by specified point in the Pages View's coordinates system. | |
== Syntax == | == Syntax == | ||
− | <pre class="brush:cpp;gutter:false">HRESULT HitTest([in] POINT* | + | <pre class="brush:cpp;gutter:false">HRESULT HitTest([in] POINT* stDevPoint, |
− | [out, defaultvalue(NULL)] PXC_Point* | + | [out, defaultvalue(NULL)] PXC_Point* stPagePoint, |
− | [out, retval] LONG* | + | [out, retval] LONG* nPage);</pre> |
== Parameters == | == Parameters == | ||
− | ; | + | ;stDevPoint |
− | :[in] Pointer to POINT. | + | :[in] Pointer to POINT containing the point in the Control's coordinate system. |
− | ; | + | ;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 |
− | :[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 == | ||
Line 25: | Line 24: | ||
== See Also == | == See Also == | ||
− | [[PXV:IPXV_PagesLayoutManager|IPXV_PagesLayoutManager]] | + | [[PXV:IPXV_PagesLayoutManager|IPXV_PagesLayoutManager]] |
Latest revision as of 23:15, 8 June 2016
Returns the page and coordinates on it by specified point in the Pages View'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.