Search
FlowChart.DocPtToClientPt Method
See Also
 



Transforms points from the document coordinate space to the client coordinate space.

 Syntax

VB6  Copy Code

Public Sub DocPtToClientPt( _
    ByVal x As Long, _
    ByVal y As Long, _
    ByRef px As Long, _
    ByRef py As Long _
)

C++  Copy Code

public:
void DocPtToClientPt (
    int x,
    int y,
    int* px,
    int* py
)

 Parameters

x
The x coordinate of the point, in document coordinates.
y
The y coordinate of the point, in document coordinates.
px
The x coordinate of the point, in client coordinates.
py
The y coordinate of the point, in client coordinates.

 Remarks

Gets client coordinates in the FlowChartX window, corresponding to the document x and y coordinates.

 See Also