Class RadCubicSegment
Represents a cubic segment of a path figure.
Inherited Members
Namespace: Telerik.Maui.Controls.Paths
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadCubicSegment : RadPathSegment, INotifyPropertyChanged
Constructors
RadCubicSegment()
Initializes a new instance of the cubic segment.
Declaration
public RadCubicSegment()
RadCubicSegment(Point, Point, Point)
Initializes a new instance of the cubic segment.
Declaration
public RadCubicSegment(Point controlPoint1, Point controlPoint2, Point endPoint)
Parameters
Microsoft. Specifies the first control point of the cubic segment. |
Microsoft. Specifies the second control point of the cubic segment. |
Microsoft. Specifies the end point of the cubic segment. |
Properties
ControlPoint1
Gets or sets the first control point of the cubic segment.
Declaration
public Point ControlPoint1 { get; set; }
Property Value
Microsoft.
|
ControlPoint2
Gets or sets the second control point of the cubic segment.
Declaration
public Point ControlPoint2 { get; set; }
Property Value
Microsoft.
|
EndPoint
Gets or sets the end point of the cubic segment.
Declaration
public Point EndPoint { get; set; }
Property Value
Microsoft.
|