The BARCODE structure

The dBarcode DLL uses a single data structure for transferring data into the library routines, BARCODE,  which is defined in DLSBARn.H along with a long pointer to the structure LPBAR.

 

typedef struct tagBARCODE

          {

          int                code;

          char             name[16];

          int                show_text;

          int                auto_parity;

          int                orientation;

          int                show_checkdigit;

          int                nominal_size;

          int                line_reduction;

          int                border_thickness;

          COLORREF     fore_color;

          COLORREF     back_color;

          int                error;

          char                       string[84];

          int                req_number;

          int                parity;

          int                alphabetic;

          int                length;

          int                height;

          int                subscript;

          int                flags;     

          int                textgap;

          char             string2[84];

          int                bearer_size;

          int                spare;

          int                xunit;

          int                bearerthick;

          int                margin_size;

          int                barratio;

          int                charspacing;

          int                justification;

} BARCODE;

The components for this structure are defined below.

 

 

More:

int alphabetic

int auto_parity

COLORREF back_color

int barratio

int bearer_size

int border_thickness

int charspacing

int code

int error

int flags;

COLORREF fore_color

int height

int length

int line_reduction

int justification

char name[12]

int margin_size

int nominal_size

int orientation

int parity

int req_number

int show_checkdigit

int show_text

int spare;

char string[84]

int subscript;

int textgap;

int xunit

Other variables