Search
FlowChart.ScrollTo Method
See Also
 



Scrolls to diagram to the specified position.

 Syntax

VB6  Copy Code

Public Sub ScrollTo( _
    ByVal x As Long, _
    ByVal y As Long _
)

C++  Copy Code

public:
void ScrollTo (
    int x,
    int y
)

 Parameters

x
The x coordinate of the document point.
y
The y coordinate of the document point.

 Remarks

Scrolls the document contents in its window causing the (x, y) document point to overlap the window upper left corner.

 See Also