LineTo()

IGeometryPath::LineTo(System::Drawing::PointF) method

Adds line to the end of the path

virtual void Aspose::Slides::IGeometryPath::LineTo(System::Drawing::PointF point)=0

Arguments

ParameterTypeDescription
pointSystem::Drawing::PointFEnd point of the line

IGeometryPath::LineTo(float, float) method

Adds line to the end of the path

virtual void Aspose::Slides::IGeometryPath::LineTo(float x, float y)=0

Arguments

ParameterTypeDescription
xfloatX coordinate of the end point of the line
yfloatY coordinate of the end point of the line

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

Adds line to the specified place of the path

virtual void Aspose::Slides::IGeometryPath::LineTo(System::Drawing::PointF point, uint32_t index)=0

Arguments

ParameterTypeDescription
pointSystem::Drawing::PointFEnd point
indexuint32_tIndex of segment in PathData

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

Adds line to the specified place of the path

virtual void Aspose::Slides::IGeometryPath::LineTo(float x, float y, uint32_t index)=0

Arguments

ParameterTypeDescription
xfloatX coordinate of the point
yfloatY coordinate of the point
indexuint32_tIndex of segment in PathData

See Also