System.Drawing.Quadrilateral.Draw C# (CSharp) Method

Draw() public method

Draws the Quadrilateral with Graphics provided.
public Draw ( Graphics graphics, Pen pen, Brush brush ) : void
graphics Graphics /// Graphics used to draw. ///
pen Pen /// Pen used to draw outline. ///
brush Brush /// Brush used to fill the inside. ///
return void
        public void Draw(Graphics graphics, Pen pen, Brush brush)
        {
            graphics.FillPath(brush, m_path);
            graphics.DrawPath(pen, m_path);
        }