| LEADTOOLS Raster Imaging C++ Class Library Help > Classes and Member Functions > LBaseFile > LBaseFile Member Functions > LBaseFile::SetVector |
#include "ltwrappr.h"
L_VOID LBaseFile::SetVector(pVector)
|
LVectorBase * pVector; |
/* pointer to a vector object */ |
Sets the vector object to be used by the file functions.
|
Parameter |
Description |
|
pVector |
Pointer to the vector object to set. |
Returns
None.
Comments
Before you can use some of the file functions, a vector must be associated with the class object. Until you have associated a vector with the LVectorFile object, the object is considered invalid.
This call will not transfer the vector filename to the class object as the LVectorFile::SetVector function do.
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: |
Example
L_INT LBaseFile__SetBitmapExample(LVectorBase * pVector)
{
LBaseFile baseFile;
baseFile.SetVector(pVector);
return SUCCESS;
}