Ejemplo n.º 1
0
 public static extern int DrawText(IntPtr hDC, string lpString, int nCount, ref RECT lpRect, uint uFormat);
Ejemplo n.º 2
0
 public static extern bool GetClientRect(IntPtr hWnd, out RECT lpRect);
Ejemplo n.º 3
0
 public bool Equals(RECT r)
 {
     return r.Left == Left && r.Top == Top && r.Right == Right && r.Bottom == Bottom;
 }