QuadraticBezierTo()

IGeometryPath::QuadraticBezierTo(System::Drawing::PointF, System::Drawing::PointF) method

Adds quadratic Bezier curve at the end the path

virtual void Aspose::Slides::IGeometryPath::QuadraticBezierTo(System::Drawing::PointF point1, System::Drawing::PointF point2)=0

Arguments

ParameterTypeDescription
point1System::Drawing::PointFDirection point
point2System::Drawing::PointFEnd point

IGeometryPath::QuadraticBezierTo(float, float, float, float) method

Adds quadratic Bezier curve at the end the path

virtual void Aspose::Slides::IGeometryPath::QuadraticBezierTo(float x1, float y1, float x2, float y2)=0

Arguments

ParameterTypeDescription
x1floatX coordinate of direction point
y1floatY coordinate of direction point
x2floatX coordinate of end point
y2floatY coordinate of end point

IGeometryPath::QuadraticBezierTo(System::Drawing::PointF, System::Drawing::PointF, uint32_t) method

Adds quadratic Bezier curve to the specified place of the path

virtual void Aspose::Slides::IGeometryPath::QuadraticBezierTo(System::Drawing::PointF point1, System::Drawing::PointF point2, uint32_t index)=0

Arguments

ParameterTypeDescription
point1System::Drawing::PointFDirection point
point2System::Drawing::PointFEnd point
indexuint32_tIndex of segment in PathData

IGeometryPath::QuadraticBezierTo(float, float, float, float, uint32_t) method

Adds quadratic Bezier curve to the specified place of the path

virtual void Aspose::Slides::IGeometryPath::QuadraticBezierTo(float x1, float y1, float x2, float y2, uint32_t index)=0

Arguments

ParameterTypeDescription
x1floatX coordinate of direction point
y1floatY coordinate of direction point
x2floatX coordinate of end point
y2floatY coordinate of end point
indexuint32_tIndex of segment in PathData

See Also