ExtTextOutW(3w)
NAME
ExtTextOutW (GDI32.@)
SYNOPSIS
BOOL ExtTextOutW ( HDC hdc, INT x, INT y, UINT flags, const RECT* lprect, LPCWSTR str, UINT count, const INT* lpDx )
DESCRIPTION
Draws text using the currently selected font, background color, and
text color.
PARAMS
x,y [In] coordinates of string.
flags [In] ETO_GRAYED - undocumented on MSDN ETO_OPAQUE - use background color for fill the rectangle ETO_CLIPPED - clipping text to the
rectangle ETO_GLYPH_INDEX - Buffer is of glyph locations in fonts
rather than encoded characters. Implies ETO_IGNORELANGUAGE ETO_RTLREADING - Paragraph is basically a right-to-left paragraph. Affects BiDi
ordering ETO_IGNORELANGUAGE - Undocumented in MSDN - instructs ExtTextOut not to do BiDi reordering ETO_PDY - unimplemented ETO_NUMERICSLATIN - unimplemented always assumed - do not translate numbers into
locale representations ETO_NUMERICSLOCAL - unimplemented - Numerals in
Arabic/Farsi context should assume local form.
lprect [In] dimensions for clipping or/and opaquing.
str [In] text string.
count [In] number of symbols in string.
lpDx [In] optional parameter with distance between drawing characters.
RETURNS
Success: TRUE
Failure: FALSE
IMPLEMENTATION
Defined in "wingdi.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/gdi32/font.c".
- Debug channel "font".