29 lines
804 B
C#
29 lines
804 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 Transparency.
|
|
/// </summary>
|
|
public partial class TransparencyProjParts : Telerik.Reporting.Report
|
|
{
|
|
public static string PrevuReportGroupName = "Transparency Reports";
|
|
public static string PrevuReportName = "Projects with Parts";
|
|
public TransparencyProjParts()
|
|
{
|
|
//
|
|
// Required for telerik Reporting designer support
|
|
//
|
|
InitializeComponent();
|
|
|
|
//
|
|
// TODO: Add any constructor code after InitializeComponent call
|
|
//
|
|
}
|
|
}
|
|
} |