using System; using System.Collections; using System.ComponentModel; using FastReport.Utils; namespace FastReport { /// /// Represents an overlay band. /// public class OverlayBand : 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 OverlayBand() { FlagUseStartNewPage = false; } } }