Class RadQuadraticSegment
Represents a quadratic segment of a path figure.
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadQuadraticSegment : RadPathSegment, INotifyPropertyChanged
Constructors
RadQuadraticSegment()
Initializes a new instance of the quadratic segment.
Declaration
public RadQuadraticSegment()
RadQuadraticSegment(Point, Point)
Initializes a new instance of the quadratic segment.
Declaration
public RadQuadraticSegment(Point controlPoint, Point endPoint)
Parameters
Microsoft.Maui.Graphics.Point
controlPoint
Specifies the control point of the quadratic segment. |
Microsoft.Maui.Graphics.Point
endPoint
Specifies the end of the quadratic segment. |
Properties
ControlPoint
Gets or sets the control point of the quadratic segment.
Declaration
public Point ControlPoint { get; set; }
Property Value
Microsoft.Maui.Graphics.Point
|
EndPoint
Gets or sets the end of the quadratic segment.
Declaration
public Point EndPoint { get; set; }
Property Value
Microsoft.Maui.Graphics.Point
|