31 lines
869 B
C#
31 lines
869 B
C#
namespace EnVisage.Reports
|
|
{
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
using Telerik.Reporting;
|
|
using Telerik.Reporting.Drawing;
|
|
|
|
/// <summary>
|
|
/// Summary description for ForecastQuarterlySummary.
|
|
/// </summary>
|
|
public partial class ForecastQuarterlySummary : Telerik.Reporting.Report
|
|
{
|
|
public static string PrevuReportGroupName = "Forecast Reports";
|
|
public static string PrevuReportName = "Quarterly Summary";
|
|
public static int PrevuReportPosition = 10;
|
|
|
|
public ForecastQuarterlySummary()
|
|
{
|
|
//
|
|
// Required for telerik Reporting designer support
|
|
//
|
|
InitializeComponent();
|
|
|
|
//
|
|
// TODO: Add any constructor code after InitializeComponent call
|
|
//
|
|
}
|
|
}
|
|
} |