DoubleGroup
Definition
Namespace:Telerik.Pivot.Core.Groups
Assembly:Telerik.WinControls.PivotGrid.dll
Syntax:
public struct DoubleGroup : IEquatable<DoubleGroup>, IComparable<DoubleGroup>, IComparable
Implements:
Constructors
Initializes a new instance of the DoubleGroup struct.
Properties
Gets the upper limit for values in this DoubleGroup.
public double End { readonly get; set; }
Gets the lower limit for values in this DoubleGroup.
public double Start { readonly get; set; }
Methods
Operators
Determines whether two specified instances of DoubleGroup are not equal.
public static bool operator !=(DoubleGroup left, DoubleGroup right)
The first object to compare.
rightDoubleGroupThe second object to compare.
Returns:true if left and right do not represent the same double group; otherwise, false.
Determines whether one specified DoubleGroup is less than another specified DoubleGroup.
public static bool operator <(DoubleGroup left, DoubleGroup right)
The first object to compare.
rightDoubleGroupThe second object to compare.
Returns:true if left is less than right; otherwise, false.
Determines whether one specified DoubleGroup is less than or equal to another specified DoubleGroup.
public static bool operator <=(DoubleGroup left, DoubleGroup right)
The first object to compare.
rightDoubleGroupThe second object to compare.
Returns:true if left is less than or equal to right; otherwise, false.
Determines whether two specified instances of DoubleGroup are equal.
public static bool operator ==(DoubleGroup left, DoubleGroup right)
The first object to compare.
rightDoubleGroupThe second object to compare.
Returns:true if left and right represent the same double group; otherwise, false.
Determines whether one specified DoubleGroup is greater than another specified DoubleGroup.
public static bool operator >(DoubleGroup left, DoubleGroup right)
The first object to compare.
rightDoubleGroupThe second object to compare.
Returns:true if left is greater than right; otherwise, false.
Determines whether one specified DoubleGroup is greater than or equal to another specified DoubleGroup.
public static bool operator >=(DoubleGroup left, DoubleGroup right)
The first object to compare.
rightDoubleGroupThe second object to compare.
Returns:true if left is greater than or equal to right; otherwise, false.