LineSegment.Point Property

Definition

Gets or sets the end point of the line segment.

public:
 property Point Point { Point get(); void set(Point value); };
Point Point();

void Point(Point value);
public Point Point { get; set; }
var point = lineSegment.point;
lineSegment.point = point;
Public Property Point As Point
<LineSegment Point="x,y"/>

Property Value

The end point of the line segment. The default is a Point with value 0,0.

Applies to