Exemplo n.º 1
0
 public void SetGroupOn(GroupingDelegate gd, string descr)
 {
     if (gd == null)
     {
         throw new ArgumentNullException();
     }
     GroupOn = new DelegateGrouper(gd, descr);
 }
Exemplo n.º 2
0
 public DelegateGrouper(GroupingDelegate Delegate, string Name)
 {
     if (Delegate == null)
     {
         throw new ArgumentNullException();
     }
     this.Name = Name;
     if (Name == null)
     {
         this.Name = Delegate.ToString();
     }
     this.GroupingDelegate = Delegate;
 }
Exemplo n.º 3
0
 public void SetGroupOn(GroupingDelegate gd)
 {
     SetGroupOn(gd, null);
 }
Exemplo n.º 4
0
 public void SetGroupOn(GroupingDelegate gd)
 {
     CheckSource().SetGroupOn(gd);
 }