5 references to CreateRectRgn
System.Private.Windows.Core (5)
Windows\Win32\Graphics\Gdi\RegionScope.cs (5)
26/// Creates a region with the given rectangle via <see cref="PInvokeCore.CreateRectRgn(int, int, int, int)"/>.
29Region = PInvokeCore.CreateRectRgn(rectangle.X, rectangle.Y, rectangle.Right, rectangle.Bottom);
32/// Creates a region with the given rectangle via <see cref="PInvokeCore.CreateRectRgn(int, int, int, int)"/>.
35Region = PInvokeCore.CreateRectRgn(x1, y1, x2, y2);
43HRGN region = PInvokeCore.CreateRectRgn(0, 0, 0, 0);