New to Telerik UI for WinFormsStart a free 30-day trial

Used for Name values of IGroups that are grouping by DateTime. The MinuteGroup contains the items with DateTime values with the same Minute.

Definition

Namespace:Telerik.Pivot.Core.Groups

Assembly:Telerik.WinControls.PivotGrid.dll

Syntax:

C#
public struct MinuteGroup : IComparable, IComparable<MinuteGroup>, IEquatable<MinuteGroup>

Implements: IComparableIComparable<MinuteGroup>IEquatable<MinuteGroup>

Constructors

Initializes a new instance of the MinuteGroup struct.

C#
public MinuteGroup(int minute, CultureInfo culture)
Parameters:minuteint

The minute which this MinuteGroup will represents.

cultureCultureInfo

The culture.

Initializes a new instance of the MinuteGroup struct.

C#
public MinuteGroup(int minute)
Parameters:minuteint

The minute which this MinuteGroup will represents.

Properties

Gets the Minute this MinuteGroup represents.

C#
public int Minute { readonly get; set; }

Methods

C#
public int CompareTo(MinuteGroup other)
Parameters:otherMinuteGroupReturns:

int

Implements: IComparable<MinuteGroup>.CompareTo(MinuteGroup)

C#
public int CompareTo(object obj)
Parameters:objobjectReturns:

int

Implements: IComparable.CompareTo(object)

C#
public bool Equals(MinuteGroup other)
Parameters:otherMinuteGroupReturns:

bool

Implements: IEquatable<MinuteGroup>.Equals(MinuteGroup)

C#
public override bool Equals(object obj)
Parameters:objobjectReturns:

bool

Overrides: ValueType.Equals(object)

C#
public override int GetHashCode()
Returns:

int

Overrides: ValueType.GetHashCode()

C#
public override string ToString()
Returns:

string

Overrides: ValueType.ToString()

Operators

Determines whether two specified instances of MinuteGroup are not equal.

C#
public static bool operator !=(MinuteGroup left, MinuteGroup right)
Parameters:leftMinuteGroup

The first object to compare.

rightMinuteGroup

The second object to compare.

Returns:

bool

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.

C#
public static bool operator <(MinuteGroup left, MinuteGroup right)
Parameters:leftMinuteGroup

The first object to compare.

rightMinuteGroup

The second object to compare.

Returns:

bool

true if left is less than right; otherwise, false.

Determines whether one specified MinuteGroup is less than or equal to another specified MinuteGroup.

C#
public static bool operator <=(MinuteGroup left, MinuteGroup right)
Parameters:leftMinuteGroup

The first object to compare.

rightMinuteGroup

The second object to compare.

Returns:

bool

true if left is less than or equal to right; otherwise, false.

Determines whether two specified instances of MinuteGroup are equal.

C#
public static bool operator ==(MinuteGroup left, MinuteGroup right)
Parameters:leftMinuteGroup

The first object to compare.

rightMinuteGroup

The second object to compare.

Returns:

bool

true if left and right represent the same Minute group; otherwise, false.

Determines whether one specified MinuteGroup is greater than another specified MinuteGroup.

C#
public static bool operator >(MinuteGroup left, MinuteGroup right)
Parameters:leftMinuteGroup

The first object to compare.

rightMinuteGroup

The second object to compare.

Returns:

bool

true if left is greater than right; otherwise, false.

Determines whether one specified MinuteGroup is greater than or equal to another specified MinuteGroup.

C#
public static bool operator >=(MinuteGroup left, MinuteGroup right)
Parameters:leftMinuteGroup

The first object to compare.

rightMinuteGroup

The second object to compare.

Returns:

bool

true if left is greater than or equal to right; otherwise, false.