Jump to content

TYPE3CELL

From EDM2
Revision as of 18:01, 8 February 2020 by Martini (talk | contribs) (Created page with "Indicates the width of the space before a character in the inline direction (the a-space) as the a-space for all characters. Indicates the width of a character in the inline d...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Indicates the width of the space before a character in the inline direction (the a-space) as the a-space for all characters. Indicates the width of a character in the inline direction (the b-space) as the b-space for all characters. Indicates the width of the space after a character in the inline direction (the c-space) as the c-space for all characters.

Example Code

typedef struct _TYPE3CELL {
  LONG       offset;   /*  Pointer to glyph data. */
  SHORT      a_space;  /*  Width of the space before a character. */
  USHORT     b_space;  /*  Width of a character. */
  SHORT      c_space;  /*  Width of the space after a character. */
} TYPE3CELL;

typedef TYPE3CELL *PTYPE3CELL;