Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@5635 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61pull/1/head
9 changed files with 107 additions and 46 deletions
@ -0,0 +1,44 @@ |
|||||||
|
/* |
||||||
|
* Erstellt mit SharpDevelop. |
||||||
|
* Benutzer: Peter Forstmeier |
||||||
|
* Datum: 23.03.2010 |
||||||
|
* Zeit: 20:08 |
||||||
|
* |
||||||
|
* Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern. |
||||||
|
*/ |
||||||
|
using System; |
||||||
|
|
||||||
|
namespace ICSharpCode.Reports.Core |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Description of ReportSectionNames.
|
||||||
|
/// </summary>
|
||||||
|
public static class ReportSectionNames |
||||||
|
{ |
||||||
|
public static string ReportHeader |
||||||
|
{ |
||||||
|
get{ return GlobalEnums.ReportSection.ReportHeader.ToString();} |
||||||
|
} |
||||||
|
|
||||||
|
public static string ReportPageHeader |
||||||
|
{ |
||||||
|
get{ return GlobalEnums.ReportSection.ReportPageHeader.ToString();} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public static string ReportDetail |
||||||
|
{ |
||||||
|
get { return GlobalEnums.ReportSection.ReportDetail.ToString();} |
||||||
|
} |
||||||
|
|
||||||
|
public static string ReportPageFooter |
||||||
|
{ |
||||||
|
get { return GlobalEnums.ReportSection.ReportPageFooter.ToString();} |
||||||
|
} |
||||||
|
|
||||||
|
public static string ReportFooter |
||||||
|
{ |
||||||
|
get{ return GlobalEnums.ReportSection.ReportFooter.ToString();} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue