namespace FastReport.Web
{
///
///
///
public class ReportTab
{
private Report fReport;
private WebReportProperties fProperties;
private string fName;
private bool fNeedParent;
///
///
///
public string Name
{
get { return fName; }
set { fName = value; }
}
///
///
///
public Report Report
{
get { return fReport; }
set { fReport = value; }
}
///
///
///
public WebReportProperties Properties
{
get { return fProperties; }
set { fProperties = value; }
}
///
///
///
public bool NeedParent
{
get { return fNeedParent; }
set { fNeedParent = value; }
}
///
///
///
public ReportTab()
{
fReport = new Report();
fProperties = new WebReportProperties();
}
///
///
///
public ReportTab(Report report)
{
fReport = report;
fProperties = new WebReportProperties();
}
///
///
///
public ReportTab(Report report, WebReportProperties properties)
{
fReport = report;
fProperties = properties;
fNeedParent = false;
}
}
}