Class RadArcToSegment
Represents an arc segment of a path figure.
Inherited Members
Namespace: Telerik.XamarinForms.Common
Assembly: Telerik.XamarinForms.Common.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
Xamarin.Forms.Point
endPoint
Specifies the end point of the arc segment. |
Xamarin.Forms.Size
radius
Specifies the radius of the arc segment. |
System.Double
rotationAngle
Specifies the rotation angle of the arc segment. |
SweepDirection
sweepDirection
Specifies the sweep direction of the arc segment. |
System.Boolean
isLargeArc
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
Xamarin.Forms.Point
|
IsLargeArc
Gets or sets a value indicating whether to draw the large arc segment.
Declaration
public bool IsLargeArc { get; set; }
Property Value
System.Boolean
|
Radius
Gets or sets the radius of the arc segment.
Declaration
public Size Radius { get; set; }
Property Value
Xamarin.Forms.Size
|
RotationAngle
Gets or sets the rotation angle of the arc segment.
Declaration
public double RotationAngle { get; set; }
Property Value
System.Double
|
SweepDirection
Gets or sets the sweep direction of the arc segment.
Declaration
public SweepDirection SweepDirection { get; set; }
Property Value
SweepDirection
|