IUIX_Obj::ClientPtToScreen Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(8 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IUIX_Obj::ClientPtToScreen Method}}
 
{{#customTitle:IUIX_Obj::ClientPtToScreen Method}}
{{#parentPage:PXV:IUIX_Obj|method}}
+
{{#parentPage:PXV:IUIX_Obj#Methods|ClientPtToScreen|method}}
{{ToWrite}}
+
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Converts point from Control coordinates to the Screen coordinates.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT ClientPtToScreen([in] POINT* pClient, [out] POINT* pScreen);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT ClientPtToScreen([in]   POINT* stClient,
 +
                        [out] POINT* stScreen);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''pClient''
+
;stClient
:[in]  Pointer to POINT.
+
:[in]  Pointer to POINT containing the Control coordinates.
;''pScreen''
+
;stScreen
:[out]  Pointer to POINT.
+
:[out]  Pointer to POINT containing the resulting screen coordinates.
  
 
== Return Value ==
 
== Return Value ==
Line 20: Line 21:
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IUIX_Obj|IUIX_Obj]].
+
[[PXV:IUIX_Obj|IUIX_Obj]]

Latest revision as of 07:21, 30 June 2017


Converts point from Control coordinates to the Screen coordinates.

Syntax

HRESULT ClientPtToScreen([in]   POINT*  stClient,
                         [out]  POINT*  stScreen);

Parameters

stClient
[in] Pointer to POINT containing the Control coordinates.
stScreen
[out] Pointer to POINT containing the resulting screen coordinates.

Return Value

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

See Also

IUIX_Obj