Class RadArcSegment
Represents an arc segment of a path figure.
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadArcSegment : RadPathSegment, INotifyPropertyChanged
Constructors
RadArcSegment()
Initializes a new instance of the arc segment.
Declaration
public RadArcSegment()
RadArcSegment(Point, Size, Double, Double)
Initializes a new instance of the arc segment.
Declaration
public RadArcSegment(Point center, Size size, double startAngle, double sweepAngle)
Parameters
Microsoft.Maui.Graphics.Point
center
Specifies the center point of the arc segment. |
Microsoft.Maui.Graphics.Size
size
Specifies the size of the arc segment. |
System.Double
startAngle
Specifies the start angle of the arc segment. |
System.Double
sweepAngle
Specifies the sweep angle of the arc segment. |
Properties
Center
Gets or sets the center point of the arc segment.
Declaration
public Point Center { get; set; }
Property Value
Microsoft.Maui.Graphics.Point
|
Size
Gets or sets the size of the arc segment.
Declaration
public Size Size { get; set; }
Property Value
Microsoft.Maui.Graphics.Size
|
StartAngle
Gets or sets the start angle of the arc segment.
Declaration
public double StartAngle { get; set; }
Property Value
System.Double
|
SweepAngle
Gets or sets the sweep angle of the arc segment.
Declaration
public double SweepAngle { get; set; }
Property Value
System.Double
|