Rect() 공개 정적인 메소드

public static Rect ( Rectangle rect ) : void
rect Rectangle
리턴 void
예제 #1
0
 public static void Rect(ref Rectangle rect)
 {
     GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom);
 }
예제 #2
0
 public static void Rect(ref System.Drawing.Rectangle rect)
 {
     GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom);
 }
예제 #3
0
 public static void Rect(ref LayoutFarm.Drawing.RectangleF rect)
 {
     GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom);
 }