Example #1
0
 public static extern bool GetWindowRect(IntPtr hwnd, out RECT lpRect);
Example #2
0
 public bool Equals(RECT r)
 {
     return r.Left == Left && r.Top == Top && r.Right == Right && r.Bottom == Bottom;
 }