Struct AngleRange
Represents a structure that defines the starting and sweeping angles of an ellipse Arc.
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public struct AngleRange
Constructors
AngleRange(Double, Double)
Initializes a new instance of the AngleRange struct.
Declaration
public AngleRange(double startAngle, double sweepAngle)
Parameters
System.Double
startAngle
The start angle. |
System.Double
sweepAngle
The sweep angle. |
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
AngleRange
|
Properties
StartAngle
Gets or sets start angle from which the arc starts.
Declaration
public double StartAngle { get; set; }
Property Value
System.Double
|
SweepAngle
Gets or sets the angle that defines the length of the Arc.
Declaration
public double SweepAngle { get; set; }
Property Value
System.Double
|
Methods
Equals(Object)
Determines whether the specified System.Object is equal to this instance.
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
The System.Object to compare with this instance. |
Returns
System.Boolean
|
Overrides
GetHashCode()
Returns a hash code for this instance.
Declaration
public override int GetHashCode()
Returns
System.Int32
A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. |
Overrides
Operators
Equality(AngleRange, AngleRange)
Implements the operator ==.
Declaration
public static bool operator ==(AngleRange r1, AngleRange r2)
Parameters
AngleRange
r1
The first range. |
AngleRange
r2
The second range. |
Returns
System.Boolean
The result of the operator. |
Inequality(AngleRange, AngleRange)
Implements the operator !=.
Declaration
public static bool operator !=(AngleRange r1, AngleRange r2)
Parameters
AngleRange
r1
The first range. |
AngleRange
r2
The second range. |
Returns
System.Boolean
The result of the operator. |