using System; using System.Collections; using System.ComponentModel; using FastReport.Utils; namespace FastReport { /// /// Represents a page header band. /// public class PageHeaderBand : BandBase { #region Properties /// /// This property is not relevant to this class. /// [Browsable(false)] public new bool StartNewPage { get { return base.StartNewPage; } set { base.StartNewPage = value; } } /// /// This property is not relevant to this class. /// [Browsable(false)] public new bool PrintOnBottom { get { return base.PrintOnBottom; } set { base.PrintOnBottom = value; } } #endregion /// /// Initializes a new instance of the class with default settings. /// public PageHeaderBand() { FlagUseStartNewPage = false; } } }