QuadraticBezierSegment.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 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 = quadraticBezierSegment.point1;
quadraticBezierSegment.point1 = point;
Public Property Point1 As Point
<QuadraticBezierSegment Point1="x,y"/>
Property Value
The control point of this QuadraticBezierSegment. The default value is a Point with value 0,0.