Class BezierSegment
Represents a cubic Bezier curve drawn between two points.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Media
Assembly: OpenSilver.dll
Syntax
public sealed class BezierSegment : PathSegment
Fields
| Improve this Doc View SourcePoint1Property
Identifies the Point1 dependency property.
Declaration
public static readonly DependencyProperty Point1Property
Field Value
Type | Description |
---|---|
DependencyProperty |
Point2Property
Identifies the Point2 dependency property.
Declaration
public static readonly DependencyProperty Point2Property
Field Value
Type | Description |
---|---|
DependencyProperty |
Point3Property
Identifies the Point3 dependency property.
Declaration
public static readonly DependencyProperty Point3Property
Field Value
Type | Description |
---|---|
DependencyProperty |
Properties
| Improve this Doc View SourcePoint1
Gets or sets the first control point of the curve.
Declaration
public Point Point1 { get; set; }
Property Value
Type | Description |
---|---|
Point |
Point2
Gets or sets the second control point of the curve.
Declaration
public Point Point2 { get; set; }
Property Value
Type | Description |
---|---|
Point |
Point3
Gets or sets the end point of the curve.
Declaration
public Point Point3 { get; set; }
Property Value
Type | Description |
---|---|
Point |