Example #1
0
 public FieldPivot _set(string caption, FollowGroupField followGroupField)
 {
     this.followGroupField = followGroupField;
     this.caption = caption;
     return this;
 }
Example #2
0
 public FieldPivot(string fieldName, string caption, TypeField typeField,
     int visibleIndex, int width, FollowGroupField followGroupField)
 {
     this.fieldName = fieldName;
     this.caption = caption != "" ? caption : fieldName;
     this.typeField = typeField;
     this.visibleIndex = visibleIndex;
     this.width = width;
     this.followGroupField = followGroupField;
 }