12 references to RegionFlags
System.Windows.Forms (12)
misc\GDI\UnsafeNativeMethods.cs (11)
189
public static extern IntNativeMethods.
RegionFlags
IntCombineRgn(HandleRef hRgnDest, HandleRef hRgnSrc1, HandleRef hRgnSrc2, RegionCombineMode combineMode);
190
public static IntNativeMethods.
RegionFlags
CombineRgn(HandleRef hRgnDest, HandleRef hRgnSrc1, HandleRef hRgnSrc2, RegionCombineMode combineMode) {
196
return IntNativeMethods.
RegionFlags
.ERROR;
214
public static extern IntNativeMethods.
RegionFlags
IntSelectClipRgn(HandleRef hDC, HandleRef hRgn);
215
public static IntNativeMethods.
RegionFlags
SelectClipRgn(HandleRef hDC, HandleRef hRgn)
217
IntNativeMethods.
RegionFlags
result = IntSelectClipRgn(hDC, hRgn);
218
DbgUtil.AssertWin32(result != IntNativeMethods.
RegionFlags
.ERROR, "SelectClipRgn([hdc=0x{0:X8}], [hRegion=0x{1:X8}]) failed.", hDC.Handle, hRgn.Handle);
224
public static extern IntNativeMethods.
RegionFlags
IntGetRgnBox(HandleRef hRgn, [In, Out] ref IntNativeMethods.RECT clipRect);
225
public static IntNativeMethods.
RegionFlags
GetRgnBox(HandleRef hRgn, [In, Out] ref IntNativeMethods.RECT clipRect)
227
IntNativeMethods.
RegionFlags
result = IntGetRgnBox(hRgn, ref clipRect);
228
DbgUtil.AssertWin32(result != IntNativeMethods.
RegionFlags
.ERROR, "GetRgnBox([hRegion=0x{0:X8}], [out rect]) failed.", hRgn.Handle);
misc\GDI\WindowsRegion.cs (1)
125
public IntNativeMethods.
RegionFlags
CombineRegion(WindowsRegion region1, WindowsRegion region2, RegionCombineMode mode) {