BezierSegment.Point1 Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the first control point of the curve.
public:
property Point Point1 { Point get(); void set(Point value); };
Point Point1();
void Point1(Point value);
public Point Point1 { get; set; }
var point = bezierSegment.point1;
bezierSegment.point1 = point;
Public Property Point1 As Point
<BezierSegment Point1="x,y"/>
Property Value
The first control point of the curve. The default is a Point with value 0,0.