Search
TreeMapLayout.SetLayoutArea Method
See Also
 



Sets the rectangle in which the layout will try to arrange the nodes.

 Syntax

VB6  Copy Code

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

C++  Copy Code

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

 Parameters

left

Coordinate of the left edge of layout rectangle.

top

Coordinate of the top edge of layout rectangle.

right

Coordinate of the right edge of layout rectangle.

bottom

Coordinate of the bottom edge of layout rectangle.

 Remarks

If this property is not set, the algorithm uses the value of diagram's bounding rectangle as target layout rectangle.

 See Also