DrawThemeTextEx function uxtheme
Draws text using the color and font defined by the visual style.
HRESULT DrawThemeTextEx(
HTHEME hTheme,
HDC hdc,
int iPartId,
int iStateId,
LPCWSTR pszText,
int cchText,
DWORD dwTextFlags,
LPRECT pRect,
const DTTOPTS *pOptions
);
Implementation
int DrawThemeTextEx(
int hTheme,
int hdc,
int iPartId,
int iStateId,
Pointer<Utf16> pszText,
int cchText,
int dwTextFlags,
Pointer<RECT> pRect,
Pointer<DTTOPTS> pOptions,
) => _DrawThemeTextEx(
hTheme,
hdc,
iPartId,
iStateId,
pszText,
cchText,
dwTextFlags,
pRect,
pOptions,
);