Class ValuesSortConditionComparerBase
Represents a base class for sorting values.
Inheritance
System.Object
    ValuesSortConditionComparerBase
  Inherited Members
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: Telerik.Windows.Documents.Spreadsheet.Model.Sorting
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public abstract class ValuesSortConditionComparerBase : IComparer<SortValue>
  Constructors
ValuesSortConditionComparerBase()
Declaration
protected ValuesSortConditionComparerBase()
  Methods
Compare(SortValue, SortValue)
Compares the specified x and y.
Declaration
public virtual int Compare(SortValue x, SortValue y)
  Parameters
| 
        SortValue
        x
         The x.  | 
    
| 
        SortValue
        y
         The y.  | 
    
Returns
| 
        System.Int32
         Less than zero if x is less y, zero if x is equal y, greated than zero if x is greater y.  | 
    
Implements
System.Collections.Generic.IComparer<T>.Compare(T, T)