LVectorBase::GetHandle

#include "ltwrappr.h"

pVECTORHANDLE LVectorBase::GetHandle(void)

Retrieves the internal LEAD vector handle for this LVectorBase class object.

Returns

A pointer to a vector handle.

Comments

Use this function to retrieve the internal LEAD vector handle for this LVectorBase class object. You can use this with any of the low level LEAD C API functions that require a pVECTORHANDLE.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT LVectorBase__GetHandleExample(HWND hWnd) 
{ 
   UNREFERENCED_PARAMETER(hWnd); 
 
   L_INT       nRet; 
   LVectorBase VectorBase1, VectorBase2; 
 
   VectorBase1.SetFileName(MAKE_IMAGE_PATH(TEXT("random.dxf"))); 
 
   nRet = VectorBase1.Load(); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   //This will make VectorBase2 use the vector in VectorBase1 
   nRet = VectorBase2.SetHandle(VectorBase1.GetHandle()); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   return SUCCESS; 
} 
Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C++ Class Library Help

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