CreateHatchBrush function gdi32

int CreateHatchBrush(
  1. int iHatch,
  2. int color
)

The CreateHatchBrush function creates a logical brush that has the specified hatch pattern and color.

HBRUSH CreateHatchBrush(
  int      iHatch,
  COLORREF color
);

Implementation

int CreateHatchBrush(int iHatch, int color) => _CreateHatchBrush(iHatch, color);