Class AngleRange
Represents a structure that defines the starting and sweeping angles of an ellipse Arc.
Inheritance
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public sealed class AngleRange : ValueType
Constructors
AngleRange(Double, Double)
Initializes a new instance of the Angle
Declaration
public AngleRange(double startAngle, double sweepAngle)
Parameters
System. The start angle. |
System. The sweep angle. |
AngleRange(Double, Double, SweepDirection)
Initializes a new instance of the Angle
Declaration
public AngleRange(double startAngle, double sweepAngle, SweepDirection sweepDirection)
Parameters
System. The start angle. |
System. The sweep angle. |
System. The sweep direction. |
Fields
Default
The default structure value with its starting angle set to 0 and its sweep angle set to 360.
Declaration
public static readonly AngleRange Default
Field Value
Properties
StartAngle
Gets or sets start angle from which the arc starts.
Declaration
public double StartAngle { get; set; }
Property Value
System.
|
SweepAngle
Gets or sets the angle that defines the length of the Arc.
Declaration
public double SweepAngle { get; set; }
Property Value
System.
|
SweepDirection
Gets or sets the sweep direction.
Declaration
public SweepDirection SweepDirection { get; set; }
Property Value
System.
|
Methods
Equals(Object)
Determines whether the specified System.
Declaration
public override bool Equals(object obj)
Parameters
System. The System. |
Returns
System.
|
GetHashCode()
Returns a hash code for this instance.
Declaration
public override int GetHashCode()
Returns
System. A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. |
Operators
Equality(AngleRange, AngleRange)
Determines whether two angle ranges are equal.
Declaration
public static bool operator ==(AngleRange range1, AngleRange range2)
Parameters
Angle The first range. |
Angle The second range. |
Returns
System.
|
Inequality(AngleRange, AngleRange)
Determines whether two angle ranges are not equal.
Declaration
public static bool operator !=(AngleRange range1, AngleRange range2)
Parameters
Angle The first range. |
Angle The second range. |
Returns
System.
|