LVectorBase::LVectorBase
#include "ltwrappr.h"
L_VOID LVectorBase::LVectorBase(void)
L_VOID LVectorBase::LVectorBase(pVector)
pVECTORHANDLE pVector; |
/* pointer to a LEAD bitmap handle */ |
Constructs and initializes the member variables of the class object.
Parameter |
Description |
pVector |
Pointer to a vector handle. |
Returns
None
Comments
These are the constructors for the LVectorBase class. They construct and initialize the member variables of the class object.
LVectorBase::LVectorBase(void) will initialize the bitmap width, height, and bits per pixel to 0.
LVectorBase::LVectorBase(pVector) constructs an LVectorBase object and allocates a vector from another LEAD vector handle.
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
Elements: |
Example
//This is the example for LVectorBase::LVectorBase(): L_INT LVectorBase__LVectorBaseExample_1() { LVectorBase myVectorBase; //destructor called when out of scope return SUCCESS; } // This is the example for LVectorBase::LVectorBase(pVectorHandle): L_INT LVectorBase__LVectorBaseExample() { L_INT nRet; L_TCHAR szFileName[_MAX_PATH]; L_UINT uLen; VECTORHANDLE hVector; L_WRPVECLOADFILE(TEXT("C:\\Program Files\\LEAD Technologies, Inc\\LEADTOOLS 15.0\\Images\\test.dxf"), &hVector,NULL, NULL); LVectorBase myVectorBase(&hVector); nRet = myVectorBase.GetFileName(szFileName, &uLen); if(nRet != SUCCESS) return nRet; return SUCCESS; }