SetBkMode function gdi32

int SetBkMode(
  1. int hdc,
  2. int mode
)

The SetBkMode function sets the background mix mode of the specified device context. The background mix mode is used with text, hatched brushes, and pen styles that are not solid lines.

int SetBkMode(
  HDC hdc,
  int mode
);

Implementation

int SetBkMode(int hdc, int mode) => _SetBkMode(hdc, mode);