Search
FlowChart.GetDocSize Method
See Also
 



Gets the size of the diagram scrollable area.

 Syntax

VB6  Copy Code

Public Sub GetDocSize( _
    ByRef left As Long, _
    ByRef top As Long, _
    ByRef right As Long, _
    ByRef bottom As Long _
)

C++  Copy Code

public:
void GetDocSize (
    int* left,
    int* top,
    int* right,
    int* bottom
)

 Parameters

left
The left side of the document area.
top
The top side of the document area.
right
The right side of the document area.
bottom
The bottom side of the document area.

 Remarks

Returns the document extents, as they were previously set with SetDocSize.

 See Also