Rect() public static méthode

public static Rect ( Rectangle rect ) : void
rect Rectangle
Résultat void
 public static void Rect(ref Rectangle rect)
 {
     GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom);
 }
 public static void Rect(ref System.Drawing.Rectangle rect)
 {
     GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom);
 }
Exemple #3
0
 public static void Rect(ref LayoutFarm.Drawing.RectangleF rect)
 {
     GL.Rect(rect.Left, rect.Top, rect.Right, rect.Bottom);
 }