SetTextColor function gdi32

int SetTextColor(
  1. int hdc,
  2. int color
)

The SetTextColor function sets the text color for the specified device context to the specified color.

COLORREF SetTextColor(
  HDC      hdc,
  COLORREF color
);

Implementation

int SetTextColor(int hdc, int color) => _SetTextColor(hdc, color);