CreateFontIndirect function gdi32

int CreateFontIndirect(
  1. Pointer<LOGFONT> lplf
)

The CreateFontIndirect function creates a logical font that has the specified characteristics. The font can subsequently be selected as the current font for any device context.

HFONT CreateFontIndirectW(
  const LOGFONTW *lplf
);

Implementation

int CreateFontIndirect(Pointer<LOGFONT> lplf) => _CreateFontIndirect(lplf);