Search
Arrow.BoundingRect Method
See Also
 



Gets the coordinates of the arrow's bounding rectangle.

 Syntax

VB6  Copy Code

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

C++  Copy Code

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

 Parameters

left
The left side of the bounding rectangle.
top
The top of the bounding rectangle.
right
The right side of the bounding rectangle.
bottom
The bottom of the bounding rectangle.

 Remarks

The returned numbers are expressed in document coordinates.

 See Also