Class LineSegment
Represents line segment of a shape.
Inheritance
Namespace: Telerik.Reporting.Drawing.Shapes
Assembly: Telerik.Reporting.dll
Syntax
public class LineSegment : IShapeSegment
Constructors
LineSegment(PointF, PointF)
Initializes a new instance of the
Line
Declaration
public LineSegment(PointF point1, PointF point2)
Parameters
System. The start point of the line segment. |
System. The end point of the line segment. |
Properties
EndPoint
Gets the end point of this segment.
Declaration
public PointF EndPoint { get; set; }
Property Value
System. The end point of the segment. |
Length
Gets the length of the line.
Declaration
public float Length { get; }
Property Value
System. A float value representing the lenght of the line segment. |
Points
Gets the points of this segment.
Declaration
public PointF[] Points { get; }
Property Value
System. A point array representing the points of the segment. |
Implements
StartPoint
Gets the start point of this segment.
Declaration
public PointF StartPoint { get; set; }
Property Value
System. The start point of the segment. |