Exemplo n.º 1
0
 public LastWordGrouper(GroupingInfo Grouper)
     : base(Grouper)
 {
 }
Exemplo n.º 2
0
 public DateTimeGrouper(GroupingInfo Grouper)
     : this(Grouper, DateTimeGrouping.Date)
 {
 }
Exemplo n.º 3
0
 public StartLetterGrouper(GroupingInfo Grouper)
     : this(Grouper, 1)
 {
 }
Exemplo n.º 4
0
 public StartLetterGrouper(GroupingInfo Grouper, int Letters)
     : base(Grouper)
 {
     this.Letters = Letters;
 }
Exemplo n.º 5
0
 public GroupWrapper(GroupingInfo Grouper)
     : this(Grouper, true)
 {
 }
Exemplo n.º 6
0
 public StringGroupWrapper(GroupingInfo Grouper)
     : base(Grouper)
 {
 }
Exemplo n.º 7
0
 public void SetGroupOnStartLetters(GroupingInfo g, int Letters)
 {
     GroupOn = new StartLetterGrouper(g, Letters);
 }
Exemplo n.º 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()));
 }
Exemplo n.º 10
0
 public GroupList(GroupingSource Source)
 {
     this.Source         = Source;
     this.gi             = Source.GroupOn;
     this.GroupValueType = gi.GroupValueType;
 }
Exemplo n.º 11
0
 public GroupDisplayEventArgs(IGroupRow Row, GroupingInfo Info)
 {
     this.Row          = Row;
     this.GroupingInfo = Info;
 }
Exemplo n.º 12
0
 public void SetGroupOnStartLetters(GroupingInfo g, int Letters)
 {
     CheckSource().SetGroupOnStartLetters(g, Letters);
 }
Exemplo n.º 13
0
 public DateTimeGrouper(GroupingInfo Grouper, DateTimeGrouping Mode)
     : base(Grouper)
 {
     this.Mode = Mode;
 }