Short description
The class in the ean8.h header file is declared as follow:
#include <windows.h>
#include <tchar.h>
namespace EAN8
{
class EAN8
{
public:
EAN8();
void SetXResolution(int);
void SetYResolution(int);
BOOL SetNumber(LPCTSTR);
void DrawBarCode(HDC,int,int);
void SetZoomFactor(double);
double GetZoomFactor();
void SetLeadInAndLeadOutFlag(BOOL);
BOOL GetLeadInAndLeadOutFlag();
void SetEdgeFlag(BOOL);
BOOL GetEdgeFlag();
void SetDrawTextFlag(BOOL);
BOOL GetDrawTextFlag();
void SetBackgroundFlag(BOOL);
BOOL GetBackgroundFlag();
void SetForegroundColor(COLORREF);
COLORREF GetForegroundColor();
void SetBackgroundColor(COLORREF);
COLORREF GetBackgroundColor();
void SetExactSymbolHeight(double);
double GetExactSymbolHeight();
};
}