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