using System;
using System.Collections;
using System.ComponentModel;
namespace FastReport
{
///
/// This class represents a column footer band.
///
public class ColumnFooterBand : 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 ColumnFooterBand()
{
FlagUseStartNewPage = false;
}
}
}