public BrushGdi SelectObject(BrushGdi brush) { return Win32.SelectObject(_hdc, (IntPtr)brush); }
public int FillRect(int x, int y, int w, int h, BrushGdi hbrush) { Win32.RECT rect = new Win32.RECT(x, y, w, h); return Win32.FillRect(_hdc, ref rect, (IntPtr)hbrush); }
public int FillRect(Rectangle rect, BrushGdi hbrush) { return FillRect(new Win32.RECT(rect), hbrush); }
public int FillRect(Win32.RECT rect, BrushGdi hbrush) { return Win32.FillRect(_hdc, ref rect, (IntPtr)hbrush); }