ColumnHeaderBand.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. namespace FastReport
  5. {
  6. /// <summary>
  7. /// This class represents a column header band.
  8. /// </summary>
  9. public class ColumnHeaderBand : BandBase
  10. {
  11. #region Properties
  12. /// <summary>
  13. /// This property is not relevant to this class.
  14. /// </summary>
  15. [Browsable(false)]
  16. public new bool StartNewPage
  17. {
  18. get { return base.StartNewPage; }
  19. set { base.StartNewPage = value; }
  20. }
  21. /// <summary>
  22. /// This property is not relevant to this class.
  23. /// </summary>
  24. [Browsable(false)]
  25. public new bool PrintOnBottom
  26. {
  27. get { return base.PrintOnBottom; }
  28. set { base.PrintOnBottom = value; }
  29. }
  30. #endregion
  31. /// <summary>
  32. /// Initializes a new instance of the <see cref="ColumnHeaderBand"/> class with default settings.
  33. /// </summary>
  34. public ColumnHeaderBand()
  35. {
  36. FlagUseStartNewPage = false;
  37. }
  38. }
  39. }