LVectorObject::GetObjectRect
#include "ltwrappr.h"
virtual L_INT LVectorObject::GetObjectRect(pRect)
RECT L_FAR *pRect; |
/* pointer to a RECT structure */ |
Gets the physical bounding rectangle for the class object.
Parameter |
Description |
pRect |
Pointer to a RECT structure to be updated with the bounding rectangle of the class object. |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Required DLLs and Libraries
LVKRN For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
See Also
Functions: |
LVectorObject::SelectObject, LVectorObject::IsObjectSelected, LVectorObject::GetObjectRect, LVectorBase::HitTest |
Topics: |
|
|
Example
//Example100
// This example will get the extents of a vector object under pPoint.
L_VOID Example100(HWND hWnd, LVectorBase *pVector, LPPOINT pPoint)
{
LVectorObject VectorObject;
L_INT nRet = pVector->HitTest(pPoint, &VectorObject);
if (nRet==SUCCESS)
{
RECT boundingRect;
L_TCHAR szMsg[200];
VectorObject.GetObjectRect(&boundingRect);
wsprintf(szMsg, TEXT("GetObjectRect boundingRect[%d,%d] [%d,%d]"),
boundingRect.left,
boundingRect.top,
boundingRect.right,
boundingRect.bottom
);
MessageBox(hWnd, szMsg, TEXT(""), MB_OK);
}
}