StructDoubleGroup
Used for Name values of IGroups that are grouping in ranges by numeric values. The DoubleGroup contains the items with double values in range from Start to End.
Definition
Namespace:Telerik.Pivot.Core.Groups
Assembly:Telerik.Pivot.Core.dll
Syntax:
public struct DoubleGroup : IEquatable<DoubleGroup>, IComparable<DoubleGroup>, IComparable
Implements:
Constructors
DoubleGroup(double, double)
Initializes a new instance of the DoubleGroup struct.
Properties
End
Gets the upper limit for values in this DoubleGroup.
Start
Gets the lower limit for values in this DoubleGroup.
Methods
CompareTo(DoubleGroup)
Declaration
public int CompareTo(DoubleGroup other)
Parameters
other
Returns
Implements
Equals(DoubleGroup)
Declaration
public bool Equals(DoubleGroup other)
Parameters
other
Returns
Implements
Operators
operator !=(DoubleGroup, DoubleGroup)
Determines whether two specified instances of DoubleGroup are not equal.
Declaration
public static bool operator !=(DoubleGroup left, DoubleGroup right)
Parameters
left
The first object to compare.
right
The second object to compare.
Returns
true if left and right do not represent the same double group; otherwise, false.
operator <(DoubleGroup, DoubleGroup)
Determines whether one specified DoubleGroup is less than another specified DoubleGroup.
Declaration
public static bool operator <(DoubleGroup left, DoubleGroup right)
Parameters
left
The first object to compare.
right
The second object to compare.
Returns
true if left is less than right; otherwise, false.
operator <=(DoubleGroup, DoubleGroup)
Determines whether one specified DoubleGroup is less than or equal to another specified DoubleGroup.
Declaration
public static bool operator <=(DoubleGroup left, DoubleGroup right)
Parameters
left
The first object to compare.
right
The second object to compare.
Returns
true if left is less than or equal to right; otherwise, false.
operator ==(DoubleGroup, DoubleGroup)
Determines whether two specified instances of DoubleGroup are equal.
Declaration
public static bool operator ==(DoubleGroup left, DoubleGroup right)
Parameters
left
The first object to compare.
right
The second object to compare.
Returns
true if left and right represent the same double group; otherwise, false.
operator >(DoubleGroup, DoubleGroup)
Determines whether one specified DoubleGroup is greater than another specified DoubleGroup.
Declaration
public static bool operator >(DoubleGroup left, DoubleGroup right)
Parameters
left
The first object to compare.
right
The second object to compare.
Returns
true if left is greater than right; otherwise, false.
operator >=(DoubleGroup, DoubleGroup)
Determines whether one specified DoubleGroup is greater than or equal to another specified DoubleGroup.
Declaration
public static bool operator >=(DoubleGroup left, DoubleGroup right)
Parameters
left
The first object to compare.
right
The second object to compare.
Returns
true if left is greater than or equal to right; otherwise, false.