Braincase.GanttChart.GDIExtention.DrawRectangle C# (CSharp) 메소드

DrawRectangle() 공개 정적인 메소드

public static DrawRectangle ( this graphics, Pen pen, RectangleF rectangle ) : void
graphics this
pen System.Drawing.Pen
rectangle System.Drawing.RectangleF
리턴 void
        public static void DrawRectangle(this Graphics graphics, Pen pen, RectangleF rectangle)
        {
            graphics.DrawRectangle(pen, rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height);
        }
GDIExtention