Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The ABC structure contains the width of a character in a TrueType font.
typedef struct _ABC {
int abcA;
UINT abcB;
int abcC;
} ABC, *PABC, *NPABC, *LPABC;
abcA
The A spacing of the character. The A spacing is the distance to add to the current position before drawing the character glyph.
abcB
The B spacing of the character. The B spacing is the width of the drawn portion of the character glyph.
abcC
The C spacing of the character. The C spacing is the distance to add to the current position to provide white space to the right of the character glyph.
The total width of a character is the summation of the A, B, and C spaces. Either the A or the C space can be negative to indicate underhangs or overhangs.
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | wingdi.h (include Windows.h) |