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