Struct ValueRange<T>
Represents a structure that defines a range of two IComparable structures - like Single or Double.
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public struct ValueRange<T>
where T : struct, IComparable<T>
Type Parameters
T
Must implement the System. |
Constructors
ValueRange(T, T)
Initializes a new instance of the ValueRange<T> struct.
Declaration
public ValueRange(T min, T max)
Parameters
T
min
The min. |
T
max
The max. |
Fields
Empty
Empty value range where minimum and maximum are set to their default(T) value.
Declaration
public static readonly ValueRange<T> Empty
Field Value
Value
|
Properties
Maximum
Gets or sets the maximum value.
Declaration
public T Maximum { get; set; }
Property Value
T
|
Minimum
Gets or sets the minimum value.
Declaration
public T Minimum { get; set; }
Property Value
T
|
Methods
Equals(Object)
Determines whether the specified System.
Declaration
public override bool Equals(object obj)
Parameters
System. The System. |
Returns
System.
|
Overrides
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. |
Overrides
IsInRangeExclusive(T)
Determines whether the specified value is within the range, excluding its minimum and maximum values.
Declaration
public bool IsInRangeExclusive(T value)
Parameters
T
value
|
Returns
System.
|
IsInRangeInclusive(Double)
Determines whether the specified value is within the range, including its minimum and maximum values.
Declaration
public bool IsInRangeInclusive(double value)
Parameters
System.
|
Returns
System.
|
Operators
Equality(ValueRange<T>, ValueRange<T>)
Determines whether two ranges are equal.
Declaration
public static bool operator ==(ValueRange<T> r1, ValueRange<T> r2)
Parameters
Value
|
Value
|
Returns
System.
|
Inequality(ValueRange<T>, ValueRange<T>)
Determines whether two ranges are not equal.
Declaration
public static bool operator !=(ValueRange<T> r1, ValueRange<T> r2)
Parameters
Value
|
Value
|
Returns
System.
|