public ReportColumn( string header, string source, string format, ColourDelegate colourDelegateIn )
 {
     Header = header;
         Source = source;
         Format = format;
         CanAccumulate = false;
         _colourDelegate = colourDelegateIn;
 }
Exemple #2
0
 public ReportColumn(string header, string source, string format, ColourDelegate colourDelegateIn)
 {
     Header                   = header;
     Source                   = source;
     Format                   = format;
     CanAccumulate            = false;
     BackGroundColourDelegate = colourDelegateIn;
 }
Exemple #3
0
 public ReportColumn(string header, string source, string format, Type type, bool tally,
                     ColourDelegate colourDelegateIn)
 {
     Header                   = header;
     Source                   = source;
     Format                   = format;
     Type                     = type;
     CanAccumulate            = tally;
     BackGroundColourDelegate = colourDelegateIn;
 }
 public ReportColumn( string header, string source, string format, Type type, bool tally,
  ColourDelegate colourDelegateIn )
 {
     Header = header;
      Source = source;
      Format = format;
      Type = type;
      CanAccumulate = tally;
      BackGroundColourDelegate = colourDelegateIn;
 }