MinuteGroup
Definition
Namespace:Telerik.Pivot.Core.Groups
Assembly:Telerik.WinControls.PivotGrid.dll
Syntax:
public struct MinuteGroup : IComparable, IComparable<MinuteGroup>, IEquatable<MinuteGroup>
Implements:
Constructors
Initializes a new instance of the MinuteGroup struct.
public MinuteGroup(int minute, CultureInfo culture)
The minute which this MinuteGroup will represents.
cultureCultureInfoThe culture.
Initializes a new instance of the MinuteGroup struct.
public MinuteGroup(int minute)
The minute which this MinuteGroup will represents.
Properties
Gets the Minute this MinuteGroup represents.
public int Minute { readonly get; set; }
Methods
Operators
Determines whether two specified instances of MinuteGroup are not equal.
public static bool operator !=(MinuteGroup left, MinuteGroup right)
The first object to compare.
rightMinuteGroupThe second object to compare.
Returns:true if left and right do not represent the same minute group; otherwise, false.
Determines whether one specified MinuteGroup is less than another specified MinuteGroup.
public static bool operator <(MinuteGroup left, MinuteGroup right)
The first object to compare.
rightMinuteGroupThe second object to compare.
Returns:true if left is less than right; otherwise, false.
Determines whether one specified MinuteGroup is less than or equal to another specified MinuteGroup.
public static bool operator <=(MinuteGroup left, MinuteGroup right)
The first object to compare.
rightMinuteGroupThe second object to compare.
Returns:true if left is less than or equal to right; otherwise, false.
Determines whether two specified instances of MinuteGroup are equal.
public static bool operator ==(MinuteGroup left, MinuteGroup right)
The first object to compare.
rightMinuteGroupThe second object to compare.
Returns:true if left and right represent the same Minute group; otherwise, false.
Determines whether one specified MinuteGroup is greater than another specified MinuteGroup.
public static bool operator >(MinuteGroup left, MinuteGroup right)
The first object to compare.
rightMinuteGroupThe second object to compare.
Returns:true if left is greater than right; otherwise, false.
Determines whether one specified MinuteGroup is greater than or equal to another specified MinuteGroup.
public static bool operator >=(MinuteGroup left, MinuteGroup right)
The first object to compare.
rightMinuteGroupThe second object to compare.
Returns:true if left is greater than or equal to right; otherwise, false.