123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections;
- using System.ComponentModel;
- namespace FastReport
- {
- /// <summary>
- /// This class represents a column header band.
- /// </summary>
- public class ColumnHeaderBand : BandBase
- {
- #region Properties
- /// <summary>
- /// This property is not relevant to this class.
- /// </summary>
- [Browsable(false)]
- public new bool StartNewPage
- {
- get { return base.StartNewPage; }
- set { base.StartNewPage = value; }
- }
- /// <summary>
- /// This property is not relevant to this class.
- /// </summary>
- [Browsable(false)]
- public new bool PrintOnBottom
- {
- get { return base.PrintOnBottom; }
- set { base.PrintOnBottom = value; }
- }
- #endregion
- /// <summary>
- /// Initializes a new instance of the <see cref="ColumnHeaderBand"/> class with default settings.
- /// </summary>
- public ColumnHeaderBand()
- {
- FlagUseStartNewPage = false;
- }
- }
- }
|