Example #1
0
 public bool Equals(RECT Rectangle)
 {
     return Rectangle.Left == _Left && Rectangle.Top == _Top && Rectangle.Right == _Right && Rectangle.Bottom == _Bottom;
 }
Example #2
0
 public RECT(RECT rectangle)
     : this(rectangle.Left, rectangle.Top, rectangle.Right, rectangle.Bottom)
 {
 }
Example #3
0
 public static extern int GetClipBox(IntPtr hdc, out RECT lprc);