5 instantiations of RECT
System.Windows.Forms (5)
misc\GDI\NativeMethods.cs (1)
187return new RECT(
misc\GDI\WindowsGraphics2.cs (3)
259IntNativeMethods.RECT rect = new IntNativeMethods.RECT(bounds); 549IntNativeMethods.RECT rect = new IntNativeMethods.RECT(bounds); 628IntNativeMethods.RECT rect = new IntNativeMethods.RECT(x, y, x + width, y + height );
misc\GDI\WindowsRegion.cs (1)
194IntNativeMethods.RECT rect = new IntNativeMethods.RECT();
18 references to RECT
System.Windows.Forms (18)
misc\GDI\NativeMethods.cs (1)
185public static RECT FromXYWH(int x, int y, int width, int height)
misc\GDI\UnsafeNativeMethods.cs (11)
224public static extern IntNativeMethods.RegionFlags IntGetRgnBox(HandleRef hRgn, [In, Out] ref IntNativeMethods.RECT clipRect); 225public static IntNativeMethods.RegionFlags GetRgnBox(HandleRef hRgn, [In, Out] ref IntNativeMethods.RECT clipRect) 367public static extern int DrawTextW(HandleRef hDC, string lpszString, int nCount, ref IntNativeMethods.RECT lpRect, int nFormat); 371public static extern int DrawTextA(HandleRef hDC, byte[] lpszString, int byteCount, ref IntNativeMethods.RECT lpRect, int nFormat); 373public static int DrawText( HandleRef hDC, string text, ref IntNativeMethods.RECT lpRect, int nFormat ) 406public static extern int DrawTextExW(HandleRef hDC, string lpszString, int nCount, ref IntNativeMethods.RECT lpRect, int nFormat, [In, Out] IntNativeMethods.DRAWTEXTPARAMS lpDTParams); 410public static extern int DrawTextExA(HandleRef hDC, byte[] lpszString, int byteCount, ref IntNativeMethods.RECT lpRect, int nFormat, [In, Out] IntNativeMethods.DRAWTEXTPARAMS lpDTParams); 412public static int DrawTextEx(HandleRef hDC, string text, ref IntNativeMethods.RECT lpRect, int nFormat, [In, Out] IntNativeMethods.DRAWTEXTPARAMS lpDTParams) 484internal static extern bool ExtTextOut(HandleRef hdc, int x, int y, int options, ref IntNativeMethods.RECT rect, string str, int length, int[] spacing); 518public static extern bool IntFillRect(HandleRef hdc, [In] ref IntNativeMethods.RECT rect, HandleRef hbrush); 519public static bool FillRect(HandleRef hDC, [In] ref IntNativeMethods.RECT rect, HandleRef hbrush)
misc\GDI\WindowsGraphics2.cs (5)
259IntNativeMethods.RECT rect = new IntNativeMethods.RECT(bounds); 485IntNativeMethods.RECT rect = IntNativeMethods.RECT.FromXYWH(0, 0, proposedSize.Width, proposedSize.Height); 549IntNativeMethods.RECT rect = new IntNativeMethods.RECT(bounds); 628IntNativeMethods.RECT rect = new IntNativeMethods.RECT(x, y, x + width, y + height );
misc\GDI\WindowsRegion.cs (1)
194IntNativeMethods.RECT rect = new IntNativeMethods.RECT();