source: Scheduling/trunk/cs/bsdx0200GUISourceCode/crCancelLetter.cs@ 614

Last change on this file since 614 was 614, checked in by Sam Habiel, 14 years ago

Initial committ of scheduling package

File size: 6.0 KB
Line 
1//------------------------------------------------------------------------------
2// <auto-generated>
3// This code was generated by a tool.
4// Runtime Version:2.0.50727.42
5//
6// Changes to this file may cause incorrect behavior and will be lost if
7// the code is regenerated.
8// </auto-generated>
9//------------------------------------------------------------------------------
10
11namespace IndianHealthService.ClinicalScheduling {
12 using System;
13 using System.ComponentModel;
14 using CrystalDecisions.Shared;
15 using CrystalDecisions.ReportSource;
16 using CrystalDecisions.CrystalReports.Engine;
17
18
19 public class crCancelLetter : ReportClass {
20
21 public crCancelLetter() {
22 }
23
24 public override string ResourceName {
25 get {
26 return "crCancelLetter.rpt";
27 }
28 set {
29 // Do nothing
30 }
31 }
32
33 [Browsable(false)]
34 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
35 public CrystalDecisions.CrystalReports.Engine.Section Section1 {
36 get {
37 return this.ReportDefinition.Sections[0];
38 }
39 }
40
41 [Browsable(false)]
42 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
43 public CrystalDecisions.CrystalReports.Engine.Section Section2 {
44 get {
45 return this.ReportDefinition.Sections[1];
46 }
47 }
48
49 [Browsable(false)]
50 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
51 public CrystalDecisions.CrystalReports.Engine.Section Section3 {
52 get {
53 return this.ReportDefinition.Sections[2];
54 }
55 }
56
57 [Browsable(false)]
58 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
59 public CrystalDecisions.CrystalReports.Engine.Section Section7 {
60 get {
61 return this.ReportDefinition.Sections[3];
62 }
63 }
64
65 [Browsable(false)]
66 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
67 public CrystalDecisions.CrystalReports.Engine.Section SectionBody {
68 get {
69 return this.ReportDefinition.Sections[4];
70 }
71 }
72
73 [Browsable(false)]
74 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
75 public CrystalDecisions.CrystalReports.Engine.Section Section8 {
76 get {
77 return this.ReportDefinition.Sections[5];
78 }
79 }
80
81 [Browsable(false)]
82 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
83 public CrystalDecisions.CrystalReports.Engine.Section Section6 {
84 get {
85 return this.ReportDefinition.Sections[6];
86 }
87 }
88
89 [Browsable(false)]
90 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
91 public CrystalDecisions.CrystalReports.Engine.Section Section4 {
92 get {
93 return this.ReportDefinition.Sections[7];
94 }
95 }
96
97 [Browsable(false)]
98 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
99 public CrystalDecisions.CrystalReports.Engine.Section Section5 {
100 get {
101 return this.ReportDefinition.Sections[8];
102 }
103 }
104 }
105
106 [System.Drawing.ToolboxBitmapAttribute(typeof(CrystalDecisions.Shared.ExportOptions), "report.bmp")]
107 public class CachedcrCancelLetter : Component, ICachedReport {
108
109 public CachedcrCancelLetter() {
110 }
111
112 [Browsable(false)]
113 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
114 public virtual bool IsCacheable {
115 get {
116 return true;
117 }
118 set {
119 //
120 }
121 }
122
123 [Browsable(false)]
124 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
125 public virtual bool ShareDBLogonInfo {
126 get {
127 return false;
128 }
129 set {
130 //
131 }
132 }
133
134 [Browsable(false)]
135 [DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
136 public virtual System.TimeSpan CacheTimeOut {
137 get {
138 return CachedReportConstants.DEFAULT_TIMEOUT;
139 }
140 set {
141 //
142 }
143 }
144
145 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() {
146 crCancelLetter rpt = new crCancelLetter();
147 rpt.Site = this.Site;
148 return rpt;
149 }
150
151 public virtual string GetCustomizedCacheKey(RequestContext request) {
152 String key = null;
153 // // The following is the code used to generate the default
154 // // cache key for caching report jobs in the ASP.NET Cache.
155 // // Feel free to modify this code to suit your needs.
156 // // Returning key == null causes the default cache key to
157 // // be generated.
158 //
159 // key = RequestContext.BuildCompleteCacheKey(
160 // request,
161 // null, // sReportFilename
162 // this.GetType(),
163 // this.ShareDBLogonInfo );
164 return key;
165 }
166 }
167}
Note: See TracBrowser for help on using the repository browser.