Class RadArcToSegment
Represents an arc segment of a path figure.
Inherited Members
Namespace: Telerik.Maui.Controls.Paths
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadArcToSegment : RadPathSegment, INotifyPropertyChanged
Constructors
RadArcToSegment()
Initializes a new instance of the arc segment.
Declaration
public RadArcToSegment()
RadArcToSegment(Point, Size, Double, SweepDirection, Boolean)
Initializes a new instance of the arc segment.
Declaration
public RadArcToSegment(Point endPoint, Size radius, double rotationAngle, SweepDirection sweepDirection, bool isLargeArc)
Parameters
Microsoft. Specifies the end point of the arc segment. |
Microsoft. Specifies the radius of the arc segment. |
System. Specifies the rotation angle of the arc segment. |
Sweep Specifies the sweep direction of the arc segment. |
System. Specifies whether to draw the large arc segment. |
Properties
EndPoint
Gets or sets the end point of the arc segment.
Declaration
public Point EndPoint { get; set; }
Property Value
Microsoft.
|
IsLargeArc
Gets or sets a value indicating whether to draw the large arc segment.
Declaration
public bool IsLargeArc { get; set; }
Property Value
System.
|
Radius
Gets or sets the radius of the arc segment.
Declaration
public Size Radius { get; set; }
Property Value
Microsoft.
|
RotationAngle
Gets or sets the rotation angle of the arc segment.
Declaration
public double RotationAngle { get; set; }
Property Value
System.
|
SweepDirection
Gets or sets the sweep direction of the arc segment.
Declaration
public SweepDirection SweepDirection { get; set; }