Windows 3.1 Device Drivers (ddag31qh.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
EXTTEXTDATA
                                                     Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
typedef struct tagEXTTEXTDATA {
    short             nSize;
    LPAPPEXTTEXTDATA  lpInData;
    LPFONTINFO        lpFont;
    LPTEXTXFORM       lpXForm;
    LPDRAWMODE        lpDrawMode;
} EXTTEXTDATA;
 
The EXTTEXTDATA structure contains a complete set of information describing
the text to be drawn.
 
Member      Description
────────────────────────────────────────────────────────────────────────────
 
nSize       Specifies the size in bytes of the structure.
 
lpInData    Points to a 16-bit variable that contains the number of bytes
            pointed to by the lpOutData parameter in an
            GETEXTENDEDTEXTMETRICS escape.
 
lpFont      Points to a FONTINFO structure specifying a physical font.
 
lpXForm     Points to a TEXTXFORM structure specifying additional attributes
            of the text.
 
lpDrawMode  Points to a DRAWMODE structure specifying information used to
            draw the text.
 
See Also
 
DRAWMODE, FONTINFO, GETEXTENDEDTEXTMETRICS, TEXTXFORM, DRAWMODE
 
 
                                      ♦