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 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. |
See Also
Functions: |
|
Topics: |
Example
L_VOID Example4(HWND hWnd)
{
LVectorBase VectorBase1, VectorBase2;
VectorBase1.SetFileName(TEXT("s:\\temp\\images\\dxf\\test.dxf"));
VectorBase1.Load();
//This will make VectorBase2 use the vector in VectorBase1
VectorBase2.SetHandle(VectorBase1.GetHandle());
}