Search
Box.BoundingRect Method
See Also
 



Gets the box bounding rectangle coordinates.

 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

Gets bounding rectangle position expressed in document coordinates.

 See Also