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