BOXEDITINFO 

2.0     

Size information for boxed edit control.

typedef struct { 

     int cxBox;

     int cyBox;

     int cxBase;

     int cyBase;

     int cyMid;

     BOXLAYOUT boxlayout;

     UINT wFlags;

     BYTE szFaceName[BEI_FACESIZE];

     UINT wFontHeight;

     UINT rgwReserved[8];

} BOXEDITINFO;

 

Members

cxBox

Width of a single box.

cyBox

Height of a single box.

cxBase

In-box x-margin to guideline.

cyBase

In-box y-offset from top to baseline.

cyMid

Reserved for future use; must be set to 0.

boxlayout

BOXLAYOUT232HBGD structure.

wFlags

Flags specifying boxed edit options. Currently, the only defined option is BEIF_BOXCROSS.

szFaceName[BEI_FACESIZE]

Font face name, where BEI_FACESIZE is defined as 32.

wFontHeight

Font height.

rgwReserved[8]

Reserved for future use; must be set to 0.

 

See Also

BOXLAYOUT