hgeFont::printf

Renders the formatted text string.

void printf(
  float x,
  float y,
  int align,
  const char *format,
  ...
);

Parameters

x
Screen x-coordinate.
y
Screen y-coordinate.
align
Alignment specificator. May be one of these: HGETEXT_LEFT, HGETEXT_RIGHT, HGETEXT_CENTER.
format
C language printf-style format specification.
...
Optional arguments list to be rendered to the screen.

Remarks

See your compiler online help or C language reference for details about format specification.

Requirements

Header: hgefont.h
Import library: hgehelp.lib

See also

Render, printfb