Exemple #1
0
 public LastWordGrouper(GroupingInfo Grouper)
     : base(Grouper)
 {
 }
Exemple #2
0
 public DateTimeGrouper(GroupingInfo Grouper)
     : this(Grouper, DateTimeGrouping.Date)
 {
 }
Exemple #3
0
 public StartLetterGrouper(GroupingInfo Grouper)
     : this(Grouper, 1)
 {
 }
Exemple #4
0
 public StartLetterGrouper(GroupingInfo Grouper, int Letters)
     : base(Grouper)
 {
     this.Letters = Letters;
 }
Exemple #5
0
 public GroupWrapper(GroupingInfo Grouper)
     : this(Grouper, true)
 {
 }
Exemple #6
0
 public StringGroupWrapper(GroupingInfo Grouper)
     : base(Grouper)
 {
 }
Exemple #7
0
 public void SetGroupOnStartLetters(GroupingInfo g, int Letters)
 {
     GroupOn = new StartLetterGrouper(g, Letters);
 }
Exemple #8
0
 protected override void Dispose(bool disposing)
 {
     UnwireCurMan();
     groupon = null;
     base.Dispose(disposing);
 }
 public virtual bool EqualsInfo(GroupingInfo g)
 {
     return(GroupInfoType.IsAssignableFrom(g.GetType()));
 }
Exemple #10
0
 public GroupList(GroupingSource Source)
 {
     this.Source         = Source;
     this.gi             = Source.GroupOn;
     this.GroupValueType = gi.GroupValueType;
 }
 public GroupDisplayEventArgs(IGroupRow Row, GroupingInfo Info)
 {
     this.Row          = Row;
     this.GroupingInfo = Info;
 }
 public void SetGroupOnStartLetters(GroupingInfo g, int Letters)
 {
     CheckSource().SetGroupOnStartLetters(g, Letters);
 }
Exemple #13
0
 public DateTimeGrouper(GroupingInfo Grouper, DateTimeGrouping Mode)
     : base(Grouper)
 {
     this.Mode = Mode;
 }