Ejemplo n.º 1
0
 public void SetSortMode(CellContext cellContext, DevAge.Drawing.HeaderSortStyle pStyle)
 {
     m_SortStatus.Style = pStyle;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="p_Style">Status of current sort.</param>
 public SortStatus(DevAge.Drawing.HeaderSortStyle p_Style)
 {
     Style    = p_Style;
     Comparer = null;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="p_Style">Status of current sort.</param>
 /// <param name="p_Comparer">Comparer used to sort the column. The comparer will take 2 Cell. If null the default ValueCellComparer is used.</param>
 public SortStatus(DevAge.Drawing.HeaderSortStyle p_Style, System.Collections.IComparer p_Comparer)
     : this(p_Style)
 {
     Comparer = p_Comparer;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="p_Style">Status of current sort.</param>
 public SortStatus(DevAge.Drawing.HeaderSortStyle p_Style)
 {
     Style = p_Style;
     Comparer = null;
 }