DrawBeziers()

Graphics::DrawBeziers(const SharedPtr<Pen>&, const ArrayPtr<Point>&) method

Draws a series of Bezier splines using the specified pen.

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

Arguments

ParameterTypeDescription
penconst SharedPtr<Pen>&A pen to use when drawing the splines
pointsconst ArrayPtr<Point>&Array of points that determines the curve

Graphics::DrawBeziers(const SharedPtr<Pen>&, const ArrayPtr<PointF>&) method

Draws a series of Bezier splines using the specified pen.

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

Arguments

ParameterTypeDescription
penconst SharedPtr<Pen>&A pen to use when drawing the splines
pointsconst ArrayPtr<PointF>&Array of points that determines the curve

See Also