PageHeaderBand.cs 970 B

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