/// <summary>
 /// Initializes a new instance of the <see cref="OutlookGridDefaultGroup"/> class.
 /// </summary>
 public OutlookGridDefaultGroup()
 {
     val    = null;
     column = null;
     if (KryptonManager.CurrentGlobalPalette.GetRenderer() == KryptonManager.RenderOffice2013)
     {
         height = StaticValues._2013GroupRowHeight; // special height for office 2013
     }
     else
     {
         height = StaticValues._defaultGroupRowHeight; // default height
     }
     rows                   = new List <OutlookGridRow>();
     children               = new OutlookGridGroupCollection();
     formatStyle            = "";
     oneItemText            = LanguageManager.Instance.GetStringGB("OneItem");
     XXXItemsText           = LanguageManager.Instance.GetStringGB("XXXItems");
     allowHiddenWhenGrouped = true;
     sortBySummaryCount     = false;
 }
Example #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="col">The OutlookGridColumn.</param>
 public OutlookGridColumnEventArgs(OutlookGridColumn col)
 {
     this.column = col;
 }