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