LVectorObject::GetObjectRect

Summary

Gets the physical bounding rectangle for the class object.

Syntax

#include "ltwrappr.h"

L_INT LVectorObject::GetObjectRect(pRect)

Parameters

RECT *pRect

Pointer to a RECT structure to be updated with the bounding rectangle of the class object.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Required DLLs and Libraries

See Also

Functions

Topics

Example

This example will get the extents of a vector object under pPoint.

L_INT LVectorObject__GetObjectRectExample(HWND hWnd, LVectorBase *pVector, LPPOINT pPoint) 
{ 
   L_INT          nRet; 
   LVectorObject  VectorObject; 
 
   nRet = pVector->HitTest(pPoint, &VectorObject); 
   if (nRet==SUCCESS) 
   { 
      RECT boundingRect; 
      L_TCHAR szMsg[200]; 
      nRet = VectorObject.GetObjectRect(&boundingRect); 
      if(nRet != SUCCESS) 
         return nRet; 
 
      wsprintf(szMsg, TEXT("GetObjectRect boundingRect[%d,%d] [%d,%d]"),  
               boundingRect.left, 
               boundingRect.top, 
               boundingRect.right, 
               boundingRect.bottom 
               ); 
      MessageBox(hWnd, szMsg, TEXT(""), MB_OK); 
   } 
   else 
      return nRet; 
 
   return SUCCESS; 
} 

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.