Class LineSegment
Draws a straight line from the current path point to the specified end point.
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Graphics
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class LineSegment : PathSegment
Constructors
LineSegment()
Initialize a line segment with no end point; assign Point to define the straight line from the current path position.
Declaration
public LineSegment()
LineSegment(Point)
Initializes a line segment with the specified end point.
Declaration
public LineSegment(Point point)
Parameters
|
System.Windows.Point
point
The end point of the line segment in the figure’s coordinate space. |
Properties
Point
End point of the line segment in the figure’s coordinate space.
Declaration
public Point Point { get; set; }
Property Value
|
System.Windows.Point
The point. |