#include "ltwrappr.h"
pVECTORHANDLE LVectorBase::GetHandle(void)
Retrieves the internal LEAD vector handle for this LVectorBase class object.
A pointer to a vector handle.
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
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. |
Functions: |
|
Topics: |
#define MAKE_IMAGE_PATH(pFileName) TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\")pFileName
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;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET