예제 #1
0
파일: Structs.cs 프로젝트: ummterry/Clipoff
 public bool Equals(RECT Rectangle)
 {
     return Rectangle.Left == _Left && Rectangle.Top == _Top && Rectangle.Right == _Right && Rectangle.Bottom == _Bottom;
 }
예제 #2
0
파일: Structs.cs 프로젝트: ummterry/Clipoff
 public RECT(RECT rectangle)
     : this(rectangle.Left, rectangle.Top, rectangle.Right, rectangle.Bottom)
 {
 }
예제 #3
0
파일: GDI32.cs 프로젝트: ummterry/Clipoff
 public static extern int GetClipBox(IntPtr hdc, out RECT lprc);