DrawLines()

Graphics::DrawLines(const SharedPtr<Pen>&, const System::ArrayPtr<System::Drawing::Point>&) method

Draws a series of line segments using the specified pen.

void System::Drawing::Graphics::DrawLines(const SharedPtr<Pen> &pen, const System::ArrayPtr<System::Drawing::Point> &points)

Arguments

ParameterTypeDescription
penconst SharedPtr<Pen>&A pen to use when drawing the lines
pointsconst System::ArrayPtr<System::Drawing::Point>&Array of points to connect

Graphics::DrawLines(const SharedPtr<Pen>&, const System::ArrayPtr<System::Drawing::PointF>&) method

Draws a series of line segments using the specified pen.

void System::Drawing::Graphics::DrawLines(const SharedPtr<Pen> &pen, const System::ArrayPtr<System::Drawing::PointF> &points)

Arguments

ParameterTypeDescription
penconst SharedPtr<Pen>&A pen to use when drawing the lines
pointsconst System::ArrayPtr<System::Drawing::PointF>&Array of points to connect

See Also