Search
FlowChart.ZoomToRect Method
See Also
 



Zooms and scrolls the diagram so that the specified rectangular area is visible.

 Syntax

VB6  Copy Code

Public Sub ZoomToRect( _
    ByVal left As Long, _
    ByVal top As Long, _
    ByVal right As Long, _
    ByVal bottom As Long _
)

C++  Copy Code

public:
void ZoomToRect (
    int left,
    int top,
    int right,
    int bottom
)

 Parameters

left
The left side of a document's rectangle.
top
The top side of a document's rectangle.
right
The right side of a document's rectangle.
bottom
The bottom side of a document's rectangle.

 Remarks

Zooms the view to fit the specified document rectangle in the FlowChartX window. Diagram objects contained within that rectangle are zoomed to fill as much of the view as possible.

 See Also