LBarCode::LBarCode

#include "ltwrappr.h"

LBarCode::LBarCode ()

LBarCode::LBarCode (pLBitmap)

Constructs and initializes the different member variables of the LBarCode object.

Parameters

LBitmapBase * pLBitmap

Pointer to the bitmap object used to initialize the LBarCode object.

Returns

None.

Comments

LBarCode::LBarCode() is a constructor for the LBarCode class.

LBarCode::LBarCode(pLBitmap) constructs and initializes the LBarCode object with the passed bitmap object pointer.

Required DLLs and Libraries

See Also

Functions

Example

For complete sample code, refer to the BarCode demo.

L_INT LBarCode_LBarCodeExample_1() 
{ 
   LBase::LoadLibraries(LT_ALL_LEADLIB);    //make sure all libraries are loaded 
 
   //Construct a LEAD BarCode object 
 
   LBarCode MyBarCode; 
 
   // ... 
 
   // do something here 
 
   // .. 
 
   //The destructor is called here 
 
   return SUCCESS; 
 
} 
// This is an example for LBarCode::LBarCode(pLBitmap): 
 
L_INT LBarCode_LBarCodeExample_2() 
 
{ 
   LBase::LoadLibraries (LT_ALL_LEADLIB);   //make sure all libraries are loaded 
 
   LBitmapBase Bitmap; 
 
   LBarCode MyBarCode(&Bitmap); 
 
   // ... 
 
   // do something here 
 
   // .. 
 
   //The destructor is called here 
 
   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 Barcode C++ Class Library Help

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