[772] | 1 | using System;
|
---|
| 2 | using System.Drawing.Printing;
|
---|
| 3 | using System.Drawing;
|
---|
[1110] | 4 | using System.Text;
|
---|
| 5 | using System.Drawing.Drawing2D;
|
---|
| 6 | using System.Linq;
|
---|
[772] | 7 | using System.Data;
|
---|
| 8 |
|
---|
| 9 | namespace IndianHealthService.ClinicalScheduling
|
---|
| 10 | {
|
---|
[1112] | 11 | public partial class Printing
|
---|
[1110] | 12 | {
|
---|
[772] | 13 | /// <summary>
|
---|
| 14 | /// Print Appointments
|
---|
| 15 | /// </summary>
|
---|
| 16 | /// <param name="ds">Strongly Typed DataSet contains Resources and Appointments</param>
|
---|
| 17 | /// <param name="e">PrintPageEventArgs from PrintDocument Print handler</param>
|
---|
| 18 | /// <param name="beg">Begin Datetime to print appointments</param>
|
---|
[788] | 19 | /// <param name="end">End Datetime to print appointments</param
|
---|
| 20 | /// <param name="resourceToPrint">The resouce to print</param>
|
---|
| 21 | /// <param name="apptPrinting">Current Appointment printing</param>
|
---|
| 22 | /// <param name="pageNumber">Current page number</param>
|
---|
[772] | 23 | /// <remarks>beg and end have no effect on operation--they are there for documentation for user only</remarks>
|
---|
[1110] | 24 | public virtual void PrintAppointments(dsPatientApptDisplay2 ds, PrintPageEventArgs e, DateTime beg, DateTime end, int resourceToPrint, ref int apptPrinting, int pageNumber)
|
---|
[772] | 25 | {
|
---|
| 26 | Graphics g = e.Graphics;
|
---|
| 27 | //g.PageUnit = GraphicsUnit.Millimeter;
|
---|
| 28 | //SizeF szVCB = g.VisibleClipBounds.Size;
|
---|
| 29 | //PointF[] ptszVCB = {new PointF(szVCB.Width,szVCB.Height)};
|
---|
| 30 | //g.TransformPoints(CoordinateSpace.Page, CoordinateSpace.Device, ptszVCB);
|
---|
| 31 | //Create Fonts
|
---|
| 32 | Font f8 = new Font(FontFamily.GenericSerif, 8);
|
---|
| 33 | Font f10 = new Font(FontFamily.GenericSerif, 10);
|
---|
| 34 | Font f14bold = new Font(FontFamily.GenericSerif, 14, FontStyle.Bold);
|
---|
| 35 |
|
---|
| 36 | //Center Alignment for some stuff
|
---|
| 37 | StringFormat sf = new StringFormat();
|
---|
| 38 | sf.Alignment = StringAlignment.Center;
|
---|
| 39 |
|
---|
[788] | 40 | //Header
|
---|
[772] | 41 | g.DrawString("Confidential Patient Information", f8, Brushes.Black, e.PageBounds, sf);
|
---|
| 42 |
|
---|
[788] | 43 | //Footer
|
---|
| 44 | sf.Alignment = StringAlignment.Center;
|
---|
| 45 | sf.LineAlignment = StringAlignment.Far;
|
---|
| 46 | g.DrawString("Page " + pageNumber, f8, Brushes.Black, e.PageBounds, sf);
|
---|
| 47 |
|
---|
[772] | 48 | //Typical manipulable print area
|
---|
| 49 | Rectangle printArea = e.MarginBounds;
|
---|
[1112] | 50 | Rectangle pageArea = e.PageBounds;
|
---|
| 51 | Rectangle headerArea = new Rectangle()
|
---|
| 52 | {
|
---|
| 53 | X = e.MarginBounds.X,
|
---|
| 54 | Y = e.PageBounds.Y,
|
---|
| 55 | Height = e.MarginBounds.Y - e.PageBounds.Y,
|
---|
| 56 | Width = e.MarginBounds.Width
|
---|
| 57 | };
|
---|
| 58 | Rectangle footerArea = new Rectangle()
|
---|
| 59 | {
|
---|
| 60 | X = e.MarginBounds.X,
|
---|
| 61 | Y = e.MarginBounds.Height + headerArea.Height,
|
---|
| 62 | Width = e.MarginBounds.Width,
|
---|
| 63 | Height = pageArea.Height - (e.MarginBounds.Height + headerArea.Height)
|
---|
| 64 | };
|
---|
| 65 |
|
---|
| 66 | //print footer
|
---|
| 67 | StringFormat sfFooter = new StringFormat { Alignment = StringAlignment.Center, LineAlignment = StringAlignment.Center };
|
---|
| 68 | string s = strings.Printed + ": " + DateTime.Now.ToString();
|
---|
| 69 | Font fFooter = new Font(FontFamily.GenericSerif, 7);
|
---|
| 70 | g.DrawString(s, fFooter, Brushes.Black, footerArea, sfFooter);
|
---|
| 71 |
|
---|
[788] | 72 | //resource we want to print
|
---|
[772] | 73 | dsPatientApptDisplay2.BSDXResourceRow r = ds.BSDXResource[resourceToPrint];
|
---|
| 74 |
|
---|
[788] | 75 | //header
|
---|
[772] | 76 | string toprint;
|
---|
[1112] | 77 | if (beg.Date == end.Date) toprint = "Appointments for " + r.RESOURCE_NAME + " on " + beg.ToLongDateString();
|
---|
[772] | 78 | else toprint = "Appointments for " + r.RESOURCE_NAME + " from " + beg.ToShortDateString() + " to "
|
---|
| 79 | + end.ToShortDateString();
|
---|
| 80 | g.DrawString(toprint, f14bold, Brushes.Black, printArea);
|
---|
| 81 |
|
---|
[788] | 82 | //Move print area down
|
---|
[1112] | 83 | int titleHeight = (int)g.MeasureString(toprint, f14bold, printArea.Size).Height;
|
---|
| 84 | printArea.Height -= titleHeight;
|
---|
| 85 | printArea.Y += titleHeight;
|
---|
[788] | 86 |
|
---|
| 87 | //Draw Line
|
---|
[772] | 88 | g.DrawLine(new Pen(Brushes.Black, 0), printArea.X, printArea.Y, printArea.X + printArea.Width, printArea.Y);
|
---|
| 89 |
|
---|
[788] | 90 | //Move print area down
|
---|
| 91 | printArea.Y += 5;
|
---|
| 92 | printArea.Height -= 5;
|
---|
| 93 |
|
---|
| 94 | System.Data.DataRow[] appts = r.GetChildRows(ds.Relations[0]); //ds has only one relation
|
---|
[772] | 95 |
|
---|
[788] | 96 | StringFormat sf2 = new StringFormat(); //sf to hold tab stops
|
---|
| 97 | sf2.SetTabStops(50, new float[] { 100, 250, 25 });
|
---|
[772] | 98 |
|
---|
[788] | 99 | //appt printed starts at zero
|
---|
| 100 | while (apptPrinting < appts.Length)
|
---|
[772] | 101 | {
|
---|
[788] | 102 | dsPatientApptDisplay2.PatientApptsRow a = (dsPatientApptDisplay2.PatientApptsRow)appts[apptPrinting];
|
---|
| 103 |
|
---|
| 104 | StringBuilder apptPrintStr = new StringBuilder(200);
|
---|
[900] | 105 | apptPrintStr.AppendLine(a.ApptDate.ToString() + "\t" + a.Name + " (" + a.Sex + ")" + "\t" + "DOB: " + a.DOB.ToShortDateString() + "\t" + "ID: " + a.HRN);
|
---|
[788] | 106 | apptPrintStr.AppendLine("P: " + a.HOMEPHONE + "\t" + "Address: " + a.STREET + ", " + a.CITY + ", " + a.STATE + " " + a.ZIP);
|
---|
| 107 | apptPrintStr.AppendLine("Note: " + a.NOTE);
|
---|
| 108 | apptPrintStr.AppendLine("Appointment made by " + a.APPT_MADE_BY + " on " + a.DATE_APPT_MADE);
|
---|
| 109 |
|
---|
| 110 | int printedApptHeight = (int)g.MeasureString(apptPrintStr.ToString(), f10, printArea.Width).Height;
|
---|
| 111 | if (printedApptHeight > printArea.Height) // too much to print -- move to next page
|
---|
| 112 | // but don't increment the appointment to print since we haven't printed it yet.
|
---|
| 113 | // i.e. apptPrinting stays the same.
|
---|
| 114 | {
|
---|
| 115 | e.HasMorePages = true;
|
---|
| 116 | break;
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | //otherwise print it
|
---|
| 120 | g.DrawString(apptPrintStr.ToString(), f10, Brushes.Black, printArea, sf2);
|
---|
| 121 |
|
---|
| 122 | //Move print area down
|
---|
| 123 | printArea.Y += printedApptHeight + 3;
|
---|
| 124 | printArea.Height -= printedApptHeight + 3;
|
---|
| 125 |
|
---|
| 126 | //Draw a divider line
|
---|
| 127 | Point pt1 = new Point((int)(printArea.X + printArea.Width * 0.25), printArea.Y);
|
---|
| 128 | Point pt2 = new Point((int)(printArea.X + printArea.Width * 0.75), printArea.Y);
|
---|
| 129 | g.DrawLine(Pens.Gray, pt1, pt2);
|
---|
| 130 |
|
---|
| 131 | //move down, again
|
---|
| 132 | printArea.Y += 3;
|
---|
| 133 | printArea.Height -= 3;
|
---|
| 134 |
|
---|
| 135 | //go to the next appointment
|
---|
| 136 | apptPrinting++;
|
---|
[772] | 137 | }
|
---|
[1131] | 138 |
|
---|
| 139 |
|
---|
| 140 | g.Dispose();
|
---|
[772] | 141 | }
|
---|
[788] | 142 |
|
---|
| 143 | /// <summary>
|
---|
[1110] | 144 | /// Prints a single appointment slip to give to the patient
|
---|
| 145 | /// </summary>
|
---|
| 146 | /// <param name="appt">The Appointment to print</param>
|
---|
| 147 | /// <param name="e">PrintPageEventArgs from PrintDocument Print handler</param>
|
---|
| 148 | public virtual void PrintAppointmentSlip(CGAppointment appt, PrintPageEventArgs e)
|
---|
| 149 | {
|
---|
| 150 | // Prep
|
---|
| 151 | Graphics g = e.Graphics;
|
---|
| 152 | Rectangle printArea = e.MarginBounds;
|
---|
| 153 | Rectangle pageArea = e.PageBounds;
|
---|
| 154 | Rectangle headerArea = new Rectangle()
|
---|
| 155 | {
|
---|
| 156 | X = e.MarginBounds.X,
|
---|
| 157 | Y = e.PageBounds.Y,
|
---|
| 158 | Height = e.MarginBounds.Y - e.PageBounds.Y,
|
---|
| 159 | Width = e.MarginBounds.Width
|
---|
| 160 | };
|
---|
[1112] | 161 | Rectangle footerArea = new Rectangle()
|
---|
| 162 | {
|
---|
| 163 | X = e.MarginBounds.X,
|
---|
| 164 | Y = e.MarginBounds.Height + headerArea.Height,
|
---|
| 165 | Width = e.MarginBounds.Width,
|
---|
| 166 | Height = pageArea.Height - (e.MarginBounds.Height + headerArea.Height)
|
---|
| 167 | };
|
---|
[1110] | 168 |
|
---|
[1131] | 169 | string s;
|
---|
[1112] | 170 |
|
---|
[1110] | 171 | // A few fonts
|
---|
| 172 | Font fTitle = new Font(FontFamily.GenericSerif, 24, FontStyle.Bold); //for title
|
---|
| 173 | Font fBody = new Font(FontFamily.GenericSerif, 12);
|
---|
| 174 | Font fGroupTitle = new Font(FontFamily.GenericSansSerif, 10, FontStyle.Bold);
|
---|
| 175 |
|
---|
[1131] | 176 | StringFormat sfCenterCenter = new StringFormat()
|
---|
[1110] | 177 | {
|
---|
| 178 | Alignment = StringAlignment.Center,
|
---|
| 179 | LineAlignment = StringAlignment.Center
|
---|
| 180 | };
|
---|
| 181 |
|
---|
| 182 | // Draw Header
|
---|
| 183 | string division = CGDocumentManager.Current.ConnectInfo.DivisionName;
|
---|
[1131] | 184 | g.DrawString(division, fBody, Brushes.Black, headerArea, sfCenterCenter);
|
---|
| 185 |
|
---|
| 186 | const int watermarkLength = 75;
|
---|
| 187 |
|
---|
| 188 | // Move down for optional form paper
|
---|
| 189 | printArea.Y += watermarkLength;
|
---|
| 190 | printArea.Height -= watermarkLength;
|
---|
| 191 |
|
---|
[1110] | 192 | // Draw Title
|
---|
[1131] | 193 | StringFormat sfCenter = new StringFormat();
|
---|
| 194 | sfCenter.Alignment = StringAlignment.Center; //for title & header
|
---|
[1110] | 195 |
|
---|
[1112] | 196 | //string s = "Appointment Reminder Slip";
|
---|
[1131] | 197 | s = strings.ApptReminderSlip;
|
---|
| 198 | g.DrawString(s, fTitle, Brushes.Black, printArea, sfCenter); //title
|
---|
[1110] | 199 |
|
---|
| 200 | // move down
|
---|
| 201 | int titleHeight = (int)g.MeasureString(s, fTitle, printArea.Width).Height;
|
---|
| 202 | printArea.Y += titleHeight;
|
---|
| 203 | printArea.Height -= titleHeight;
|
---|
| 204 |
|
---|
| 205 | // draw underline
|
---|
| 206 | g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 207 | printArea.Y += 15;
|
---|
| 208 | printArea.Height -= 15;
|
---|
| 209 |
|
---|
| 210 | // draw curved rectangle.
|
---|
| 211 | Rectangle personalInfoRectangle = new Rectangle(e.MarginBounds.X, printArea.Y + 30, 280, 300);
|
---|
| 212 | using (GraphicsPath path = GetRoundedRectPath(personalInfoRectangle, 10))
|
---|
| 213 | {
|
---|
| 214 | g.DrawPath(Pens.Black, path);
|
---|
| 215 | }
|
---|
| 216 |
|
---|
| 217 | // group header
|
---|
[1112] | 218 | s = strings.PtInfo;
|
---|
| 219 | StringFormat sf3 = new StringFormat(System.Threading.Thread.CurrentThread.CurrentUICulture.TextInfo.IsRightToLeft ? StringFormatFlags.DirectionRightToLeft : 0);
|
---|
| 220 | g.DrawString(s, fGroupTitle, Brushes.Black, new Rectangle(personalInfoRectangle.X, personalInfoRectangle.Y - 20,personalInfoRectangle.Width, 20),sf3);
|
---|
[1110] | 221 |
|
---|
| 222 | // inner rectangle for drawing strings:
|
---|
| 223 | Rectangle personalInfoInnerRectangle = new Rectangle(personalInfoRectangle.X + 20, personalInfoRectangle.Y + 20, 280 - 40, 300 - 40);
|
---|
| 224 |
|
---|
| 225 | // Strings to write
|
---|
| 226 | StringBuilder sb = new StringBuilder(500);
|
---|
[1112] | 227 | sb.AppendLine(strings.Name + ":" + "\t" + appt.Patient.Name);
|
---|
[1110] | 228 | sb.AppendLine();
|
---|
[1112] | 229 | sb.AppendLine(strings.ID + ":" + "\t" + appt.Patient.ID);
|
---|
[1110] | 230 | sb.AppendLine();
|
---|
[1112] | 231 | sb.AppendLine(strings.DOB + ":" + "\t" + appt.Patient.DOB.ToShortDateString());
|
---|
[1110] | 232 | sb.AppendLine();
|
---|
[1112] | 233 | sb.AppendLine(strings.Age + ":" + "\t" + appt.Patient.UserFriendlyAge);
|
---|
[1110] | 234 | sb.AppendLine();
|
---|
[1112] | 235 | s = appt.Patient.Sex == Sex.Male ? strings.Male : strings.Female;
|
---|
| 236 | sb.AppendLine(strings.Sex + ":" + "\t" + s);
|
---|
| 237 |
|
---|
[1110] | 238 | // Draw them
|
---|
[1112] | 239 | sf3 = new StringFormat(System.Threading.Thread.CurrentThread.CurrentUICulture.TextInfo.IsRightToLeft ? StringFormatFlags.DirectionRightToLeft : 0);
|
---|
| 240 | sf3.SetTabStops(0, new float[] {75} );
|
---|
| 241 | sf3.SetDigitSubstitution(System.Threading.Thread.CurrentThread.CurrentUICulture.LCID, StringDigitSubstitute.Traditional);
|
---|
| 242 | g.DrawString(sb.ToString(), fBody, Brushes.Black, personalInfoInnerRectangle, sf3);
|
---|
[1110] | 243 |
|
---|
| 244 | // draw curved rectangle
|
---|
| 245 | Rectangle apptInfoRectangle = new Rectangle(e.MarginBounds.X + e.MarginBounds.Width - 280, printArea.Y + 30, 280, 300);
|
---|
| 246 | using (GraphicsPath path = GetRoundedRectPath(apptInfoRectangle, 10))
|
---|
| 247 | {
|
---|
| 248 | g.DrawPath(Pens.Black, path);
|
---|
| 249 | }
|
---|
| 250 |
|
---|
[1112] | 251 | s = strings.ApptInfo;
|
---|
[1110] | 252 | // group header
|
---|
[1112] | 253 | g.DrawString(s, fGroupTitle, Brushes.Black, new Rectangle(apptInfoRectangle.X, apptInfoRectangle.Y - 20,apptInfoRectangle.Width, 20), sf3);
|
---|
[1110] | 254 |
|
---|
| 255 | // Strings to write
|
---|
| 256 | sb = new StringBuilder();
|
---|
[1112] | 257 | sb.AppendLine(strings.Clinic + ":" + "\t" + appt.Resource);
|
---|
[1110] | 258 | sb.AppendLine();
|
---|
[1112] | 259 | sb.AppendLine(strings.Date + ":" + "\t" + appt.StartTime.ToShortDateString());
|
---|
[1110] | 260 | sb.AppendLine();
|
---|
[1112] | 261 | sb.AppendLine(strings.Day + ":" + "\t" + appt.StartTime.ToString("dddd"));
|
---|
[1110] | 262 | sb.AppendLine();
|
---|
[1112] | 263 | sb.AppendLine(strings.Time + ":" + "\t" + appt.StartTime.ToShortTimeString());
|
---|
[1110] | 264 |
|
---|
| 265 | // Draw them
|
---|
| 266 | Rectangle apptInfoInnerRectangle = new Rectangle(apptInfoRectangle.X + 20, apptInfoRectangle.Y + 20, 280 - 40, 300 - 40);
|
---|
| 267 |
|
---|
| 268 | // Draw them
|
---|
[1112] | 269 | g.DrawString(sb.ToString(), fBody, Brushes.Black, apptInfoInnerRectangle, sf3);
|
---|
[1110] | 270 |
|
---|
| 271 | // Move Drawing Rectangle Down
|
---|
| 272 | printArea.Y += 300 + 30 + 20;
|
---|
| 273 | printArea.Height -= 300 + 30 + 20;
|
---|
| 274 |
|
---|
| 275 | // Draw New Line
|
---|
| 276 | g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 277 | printArea.Y += 5;
|
---|
| 278 | printArea.Height -= 5;
|
---|
| 279 |
|
---|
| 280 | // Draw new Title
|
---|
[1112] | 281 | s = strings.ClinicInstructions;
|
---|
[1131] | 282 | g.DrawString(s, fTitle, Brushes.Black, printArea, sfCenter); //title
|
---|
[1110] | 283 |
|
---|
| 284 | // move down
|
---|
| 285 | titleHeight = (int)g.MeasureString(s, fTitle, printArea.Width).Height;
|
---|
| 286 | printArea.Y += titleHeight;
|
---|
| 287 | printArea.Height -= titleHeight;
|
---|
| 288 |
|
---|
| 289 | // Draw New Line
|
---|
| 290 | g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 291 | printArea.Y += 15;
|
---|
| 292 | printArea.Height -= 15;
|
---|
| 293 |
|
---|
| 294 | // Get Resource Clinic Appointment Letter Text
|
---|
| 295 | DataTable resources = CGDocumentManager.Current.GlobalDataSet.Tables["Resources"];
|
---|
| 296 |
|
---|
| 297 | string ltrTxt = (from resource in resources.AsEnumerable()
|
---|
| 298 | where resource.Field<string>("RESOURCE_NAME") == appt.Resource
|
---|
| 299 | select resource.Field<string>("LETTER_TEXT")).SingleOrDefault<string>();
|
---|
| 300 |
|
---|
[1112] | 301 | if (String.IsNullOrWhiteSpace(ltrTxt)) ltrTxt = strings.NoInstructionsProvided;
|
---|
[1110] | 302 |
|
---|
[1112] | 303 | g.DrawString(ltrTxt, fBody, Brushes.Black, printArea, sf3);
|
---|
[1110] | 304 |
|
---|
| 305 | int ltrTxtHeight = (int)g.MeasureString(ltrTxt, fBody).Height;
|
---|
| 306 |
|
---|
| 307 | printArea.Y += ltrTxtHeight + 15;
|
---|
| 308 | printArea.Height -= ltrTxtHeight + 15;
|
---|
| 309 |
|
---|
| 310 | g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 311 | printArea.Y += 5;
|
---|
| 312 | printArea.Height -= 5;
|
---|
| 313 |
|
---|
[1112] | 314 | s = strings.Notes;
|
---|
[1131] | 315 | g.DrawString(s, fTitle, Brushes.Black, printArea, sfCenter); // Notes title
|
---|
[1110] | 316 |
|
---|
| 317 | // move down
|
---|
| 318 | titleHeight = (int)g.MeasureString(s, fTitle, printArea.Width).Height;
|
---|
| 319 | printArea.Y += titleHeight;
|
---|
| 320 | printArea.Height -= titleHeight;
|
---|
| 321 |
|
---|
| 322 | // Draw New Line
|
---|
| 323 | g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 324 | printArea.Y += 15;
|
---|
| 325 | printArea.Height -= 15;
|
---|
| 326 |
|
---|
| 327 | // Draw Notes Area
|
---|
| 328 | using (GraphicsPath path = GetRoundedRectPath(printArea, 15))
|
---|
| 329 | {
|
---|
| 330 | g.DrawPath(Pens.Black, path);
|
---|
| 331 | }
|
---|
| 332 |
|
---|
| 333 | //use sf0 to print the footer (center all the way)
|
---|
[1112] | 334 | s = strings.Printed + ": " + DateTime.Now.ToString();
|
---|
[1110] | 335 | Font fFooter = new Font(FontFamily.GenericSerif, 7);
|
---|
[1131] | 336 | g.DrawString(s, fFooter, Brushes.Black, footerArea, sfCenterCenter);
|
---|
[1110] | 337 |
|
---|
[1131] | 338 | g.Dispose();
|
---|
[1110] | 339 | }
|
---|
| 340 |
|
---|
| 341 |
|
---|
| 342 | private GraphicsPath GetRoundedRectPath(Rectangle rect, int radius)
|
---|
| 343 | {
|
---|
| 344 | int diameter = 2 * radius;
|
---|
| 345 |
|
---|
| 346 | Rectangle arcRect = new Rectangle(rect.Location, new Size(diameter, diameter));
|
---|
| 347 | GraphicsPath path = new GraphicsPath();
|
---|
| 348 |
|
---|
| 349 | path.AddArc(arcRect, 180, 90); //top left
|
---|
| 350 | arcRect.X = rect.Right - diameter;
|
---|
| 351 | path.AddArc(arcRect, 270, 90); // top right
|
---|
| 352 | arcRect.Y = rect.Bottom - diameter;
|
---|
| 353 | path.AddArc(arcRect, 0, 90); // bottom right
|
---|
| 354 | arcRect.X = rect.Left;
|
---|
| 355 | path.AddArc(arcRect, 90, 90); // bottom left
|
---|
| 356 |
|
---|
| 357 | path.CloseFigure();
|
---|
| 358 |
|
---|
| 359 | return path;
|
---|
| 360 | }
|
---|
| 361 |
|
---|
| 362 | /// <summary>
|
---|
[788] | 363 | /// Print Letter to be given or mailed to the patient
|
---|
| 364 | /// </summary>
|
---|
| 365 | /// <param name="ptrow">Strongly typed PatientApptsRow to pass (just one ApptRow)</param>
|
---|
| 366 | /// <param name="e">You know what that is</param>
|
---|
| 367 | /// <param name="letter">Contains letter string</param>
|
---|
| 368 | /// <param name="title">Title of the letter</param>
|
---|
[1110] | 369 | public virtual void PrintReminderLetter(dsPatientApptDisplay2.PatientApptsRow ptRow, PrintPageEventArgs e, string letter, string title)
|
---|
[788] | 370 | {
|
---|
| 371 |
|
---|
| 372 | Rectangle printArea = e.MarginBounds;
|
---|
| 373 | Graphics g = e.Graphics;
|
---|
| 374 | StringFormat sf = new StringFormat();
|
---|
| 375 | sf.Alignment = StringAlignment.Center; //for title
|
---|
| 376 | Font fTitle = new Font(FontFamily.GenericSerif, 24, FontStyle.Bold); //for title
|
---|
| 377 | Font fBody = new Font(FontFamily.GenericSerif, 12);
|
---|
| 378 | g.DrawString(title, fTitle, Brushes.Black, printArea, sf); //title
|
---|
| 379 |
|
---|
| 380 | // move down
|
---|
| 381 | int titleHeight = (int)g.MeasureString(title, fTitle, printArea.Width).Height;
|
---|
| 382 | printArea.Y += titleHeight;
|
---|
| 383 | printArea.Height -= titleHeight;
|
---|
| 384 |
|
---|
| 385 | // draw underline
|
---|
| 386 | g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 387 | printArea.Y += 15;
|
---|
| 388 | printArea.Height -= 15;
|
---|
[789] | 389 |
|
---|
| 390 | // write appointment date
|
---|
| 391 | string str = "Appointment Date: " + ptRow.ApptDate + "\n\n";
|
---|
| 392 | g.DrawString(str, fBody, Brushes.Black, printArea);
|
---|
| 393 |
|
---|
| 394 | // move down
|
---|
| 395 | int strHeight = (int)g.MeasureString(str, fBody, printArea.Width).Height;
|
---|
| 396 | printArea.Y += strHeight;
|
---|
| 397 | printArea.Height -= strHeight;
|
---|
| 398 |
|
---|
[900] | 399 | //Text Direction
|
---|
| 400 | StringFormat sf2 = new StringFormat();
|
---|
| 401 | if (System.Threading.Thread.CurrentThread.CurrentCulture.TextInfo.IsRightToLeft)
|
---|
| 402 | sf2.FormatFlags = StringFormatFlags.DirectionRightToLeft;
|
---|
| 403 |
|
---|
[788] | 404 | // write missive
|
---|
[900] | 405 | g.DrawString(letter, fBody, Brushes.Black, printArea, sf2);
|
---|
[788] | 406 |
|
---|
| 407 | //print Address in lower left corner for windowed envolopes
|
---|
| 408 | printArea.Location = new Point(e.MarginBounds.X, (int)(e.PageBounds.Height * 0.66));
|
---|
| 409 | printArea.Height = (int)(e.MarginBounds.Height * 0.20);
|
---|
| 410 | sf.Alignment = StringAlignment.Near;
|
---|
| 411 | sf.LineAlignment = StringAlignment.Center;
|
---|
| 412 | StringBuilder address = new StringBuilder(100);
|
---|
| 413 | address.AppendLine(ptRow.Name);
|
---|
| 414 | address.AppendLine(ptRow.STREET);
|
---|
| 415 | address.AppendLine(ptRow.CITY + ", " + ptRow.STATE + " " + ptRow.ZIP);
|
---|
| 416 | g.DrawString(address.ToString(), fBody, Brushes.Black, printArea, sf);
|
---|
[1131] | 417 |
|
---|
| 418 | g.Dispose();
|
---|
[788] | 419 | }
|
---|
[1110] | 420 |
|
---|
[788] | 421 | /// <summary>
|
---|
[789] | 422 | /// Cancellation Letter to be given or mailed to the patient
|
---|
[788] | 423 | /// </summary>
|
---|
[789] | 424 | /// <param name="ptRow">Strongly typed PatientApptsRow to pass (just one ApptRow)</param>
|
---|
[788] | 425 | /// <param name="e">You know what that is</param>
|
---|
| 426 | /// <param name="letter">Contains letter string</param>
|
---|
| 427 | /// <param name="title">Title of the letter</param>
|
---|
[1110] | 428 | public virtual void PrintCancelLetter(dsRebookAppts.PatientApptsRow ptRow, PrintPageEventArgs e, string letter, string title)
|
---|
[788] | 429 | {
|
---|
| 430 | Rectangle printArea = e.MarginBounds;
|
---|
| 431 | Graphics g = e.Graphics;
|
---|
| 432 | StringFormat sf = new StringFormat();
|
---|
| 433 | sf.Alignment = StringAlignment.Center; //for title
|
---|
| 434 | Font fTitle = new Font(FontFamily.GenericSerif, 24, FontStyle.Bold); //for title
|
---|
| 435 | Font fBody = new Font(FontFamily.GenericSerif, 12);
|
---|
| 436 | g.DrawString(title, fTitle, Brushes.Black, printArea, sf); //title
|
---|
| 437 |
|
---|
| 438 | // move down
|
---|
| 439 | int titleHeight = (int)g.MeasureString(title, fTitle, printArea.Width).Height;
|
---|
| 440 | printArea.Y += titleHeight;
|
---|
| 441 | printArea.Height -= titleHeight;
|
---|
| 442 |
|
---|
| 443 | // draw underline
|
---|
| 444 | g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 445 | printArea.Y += 15;
|
---|
| 446 | printArea.Height -= 15;
|
---|
| 447 |
|
---|
[789] | 448 | // write appointment date
|
---|
| 449 | string str = "Appointment Date: " + ptRow.OldApptDate + "\n\n";
|
---|
| 450 | g.DrawString(str, fBody, Brushes.Black, printArea);
|
---|
| 451 |
|
---|
| 452 | // move down
|
---|
| 453 | int strHeight = (int)g.MeasureString(str, fBody, printArea.Width).Height;
|
---|
| 454 | printArea.Y += strHeight;
|
---|
| 455 | printArea.Height -= strHeight;
|
---|
| 456 |
|
---|
[900] | 457 | //Text Direction
|
---|
| 458 | StringFormat sf2 = new StringFormat();
|
---|
| 459 | if (System.Threading.Thread.CurrentThread.CurrentCulture.TextInfo.IsRightToLeft)
|
---|
| 460 | sf2.FormatFlags = StringFormatFlags.DirectionRightToLeft;
|
---|
| 461 |
|
---|
[788] | 462 | // write missive
|
---|
[900] | 463 | g.DrawString(letter, fBody, Brushes.Black, printArea, sf2);
|
---|
[788] | 464 |
|
---|
| 465 | //print Address in lower left corner for windowed envolopes
|
---|
| 466 | printArea.Location = new Point(e.MarginBounds.X, (int)(e.PageBounds.Height * 0.66));
|
---|
| 467 | printArea.Height = (int)(e.MarginBounds.Height * 0.20);
|
---|
| 468 | sf.Alignment = StringAlignment.Near;
|
---|
| 469 | sf.LineAlignment = StringAlignment.Center;
|
---|
| 470 | StringBuilder address = new StringBuilder(100);
|
---|
| 471 | address.AppendLine(ptRow.Name);
|
---|
| 472 | address.AppendLine(ptRow.STREET);
|
---|
| 473 | address.AppendLine(ptRow.CITY + ", " + ptRow.STATE + " " + ptRow.ZIP);
|
---|
| 474 | g.DrawString(address.ToString(), fBody, Brushes.Black, printArea, sf);
|
---|
[1131] | 475 |
|
---|
| 476 | g.Dispose();
|
---|
[788] | 477 | }
|
---|
| 478 |
|
---|
[789] | 479 | /// <summary>
|
---|
| 480 | /// Print rebook letters. Prints old and new appointments dates then the missive.
|
---|
| 481 | /// </summary>
|
---|
| 482 | /// <param name="ptRow">Strongly typed appointment row</param>
|
---|
| 483 | /// <param name="e">etc</param>
|
---|
| 484 | /// <param name="letter">Text of the letter to print</param>
|
---|
| 485 | /// <param name="title">Title to print at the top of the letter</param>
|
---|
[1110] | 486 | public virtual void PrintRebookLetter(dsRebookAppts.PatientApptsRow ptRow, PrintPageEventArgs e, string letter, string title)
|
---|
[789] | 487 | {
|
---|
| 488 | Rectangle printArea = e.MarginBounds;
|
---|
| 489 | Graphics g = e.Graphics;
|
---|
| 490 | StringFormat sf = new StringFormat();
|
---|
| 491 | sf.Alignment = StringAlignment.Center; //for title
|
---|
| 492 | Font fTitle = new Font(FontFamily.GenericSerif, 24, FontStyle.Bold); //for title
|
---|
| 493 | Font fBody = new Font(FontFamily.GenericSerif, 12);
|
---|
| 494 | g.DrawString(title, fTitle, Brushes.Black, printArea, sf); //title
|
---|
| 495 |
|
---|
| 496 | // move down
|
---|
| 497 | int titleHeight = (int)g.MeasureString(title, fTitle, printArea.Width).Height;
|
---|
| 498 | printArea.Y += titleHeight;
|
---|
| 499 | printArea.Height -= titleHeight;
|
---|
| 500 |
|
---|
| 501 | // draw underline
|
---|
| 502 | g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 503 | printArea.Y += 15;
|
---|
| 504 | printArea.Height -= 15;
|
---|
| 505 |
|
---|
| 506 | // write old and new appointment dates
|
---|
| 507 | string str = "Old Appointment Date:\t\t" + ptRow.OldApptDate + "\n";
|
---|
| 508 | str += "New Appointment Date:\t\t" + ptRow.NewApptDate + "\n\n";
|
---|
| 509 | g.DrawString(str, fBody, Brushes.Black, printArea);
|
---|
| 510 |
|
---|
| 511 | // move down
|
---|
| 512 | int strHeight = (int)g.MeasureString(str, fBody, printArea.Width).Height;
|
---|
| 513 | printArea.Y += strHeight;
|
---|
| 514 | printArea.Height -= strHeight;
|
---|
| 515 |
|
---|
[900] | 516 | //Text Direction
|
---|
| 517 | StringFormat sf2 = new StringFormat();
|
---|
| 518 | if (System.Threading.Thread.CurrentThread.CurrentCulture.TextInfo.IsRightToLeft)
|
---|
| 519 | sf2.FormatFlags = StringFormatFlags.DirectionRightToLeft;
|
---|
| 520 |
|
---|
[789] | 521 | // write missive
|
---|
[900] | 522 | g.DrawString(letter, fBody, Brushes.Black, printArea, sf2);
|
---|
[789] | 523 |
|
---|
| 524 | //print Address in lower left corner for windowed envolopes
|
---|
| 525 | printArea.Location = new Point(e.MarginBounds.X, (int)(e.PageBounds.Height * 0.66));
|
---|
| 526 | printArea.Height = (int)(e.MarginBounds.Height * 0.20);
|
---|
| 527 | sf.Alignment = StringAlignment.Near;
|
---|
| 528 | sf.LineAlignment = StringAlignment.Center;
|
---|
| 529 | StringBuilder address = new StringBuilder(100);
|
---|
| 530 | address.AppendLine(ptRow.Name);
|
---|
| 531 | address.AppendLine(ptRow.STREET);
|
---|
| 532 | address.AppendLine(ptRow.CITY + ", " + ptRow.STATE + " " + ptRow.ZIP);
|
---|
| 533 | g.DrawString(address.ToString(), fBody, Brushes.Black, printArea, sf);
|
---|
| 534 |
|
---|
[1131] | 535 | g.Dispose();
|
---|
[789] | 536 | }
|
---|
| 537 |
|
---|
| 538 | /// <summary>
|
---|
| 539 | /// Print message on a page; typically that there are no appointments to be found.
|
---|
[804] | 540 | /// Or just a test message to verify that printing works.
|
---|
[789] | 541 | /// </summary>
|
---|
| 542 | /// <param name="msg">The exact string to print.</param>
|
---|
| 543 | /// <param name="e">Print Page event args</param>
|
---|
[1110] | 544 | public virtual void PrintMessage(string msg, PrintPageEventArgs e)
|
---|
[788] | 545 | {
|
---|
| 546 | e.Graphics.DrawString(msg, new Font(FontFamily.GenericSerif, 14),
|
---|
| 547 | Brushes.Black, e.MarginBounds);
|
---|
[1131] | 548 | e.Graphics.Dispose();
|
---|
[788] | 549 | }
|
---|
[804] | 550 |
|
---|
| 551 | /// <summary>
|
---|
| 552 | /// Print Routing Slip
|
---|
| 553 | /// </summary>
|
---|
| 554 | /// <param name="a">Appointment Data Structure</param>
|
---|
| 555 | /// <param name="title">String to print for title</param>
|
---|
| 556 | /// <param name="e">etc</param>
|
---|
[1112] | 557 | public virtual void PrintRoutingSlip(CGAppointment appt, int apptOrder, PrintPageEventArgs e)
|
---|
[804] | 558 | {
|
---|
[1112] | 559 | // Prep
|
---|
| 560 | Graphics g = e.Graphics;
|
---|
[804] | 561 | Rectangle printArea = e.MarginBounds;
|
---|
[1112] | 562 | Rectangle pageArea = e.PageBounds;
|
---|
| 563 | Rectangle headerArea = new Rectangle()
|
---|
| 564 | {
|
---|
| 565 | X = e.MarginBounds.X,
|
---|
| 566 | Y = e.PageBounds.Y,
|
---|
| 567 | Height = e.MarginBounds.Y - e.PageBounds.Y,
|
---|
| 568 | Width = e.MarginBounds.Width
|
---|
| 569 | };
|
---|
| 570 | Rectangle footerArea = new Rectangle()
|
---|
| 571 | {
|
---|
| 572 | X = e.MarginBounds.X,
|
---|
| 573 | Y = e.MarginBounds.Height + headerArea.Height,
|
---|
| 574 | Width = e.MarginBounds.Width,
|
---|
| 575 | Height = pageArea.Height - (e.MarginBounds.Height + headerArea.Height)
|
---|
| 576 | };
|
---|
| 577 |
|
---|
| 578 | const int part1Height = 400;
|
---|
| 579 | string s;
|
---|
| 580 |
|
---|
| 581 | // A few fonts
|
---|
| 582 | Font fTitle = new Font(FontFamily.GenericSerif, 24, FontStyle.Bold); //for title
|
---|
| 583 | Font fBody = new Font(FontFamily.GenericSerif, 12);
|
---|
| 584 | Font fGroupTitle = new Font(FontFamily.GenericSansSerif, 10, FontStyle.Bold);
|
---|
| 585 |
|
---|
| 586 | StringFormat sf0 = new StringFormat()
|
---|
| 587 | {
|
---|
| 588 | Alignment = StringAlignment.Center,
|
---|
| 589 | LineAlignment = StringAlignment.Center
|
---|
| 590 | };
|
---|
| 591 |
|
---|
| 592 | // Draw Header
|
---|
| 593 | string division = CGDocumentManager.Current.ConnectInfo.DivisionName;
|
---|
| 594 | g.DrawString(division, fBody, Brushes.Black, headerArea, sf0);
|
---|
| 595 |
|
---|
[1131] | 596 | const int watermarkLength = 75;
|
---|
| 597 |
|
---|
| 598 | // Move down for optional form paper
|
---|
| 599 | printArea.Y += watermarkLength;
|
---|
| 600 | printArea.Height -= watermarkLength;
|
---|
| 601 |
|
---|
[1112] | 602 | // Draw Title
|
---|
[804] | 603 | StringFormat sf = new StringFormat();
|
---|
[1112] | 604 | sf.Alignment = StringAlignment.Center; //for title & header
|
---|
[1131] | 605 | string title = strings.RoutingSlip;
|
---|
[804] | 606 | g.DrawString(title, fTitle, Brushes.Black, printArea, sf); //title
|
---|
| 607 |
|
---|
| 608 | // move down
|
---|
| 609 | int titleHeight = (int)g.MeasureString(title, fTitle, printArea.Width).Height;
|
---|
| 610 | printArea.Y += titleHeight;
|
---|
| 611 | printArea.Height -= titleHeight;
|
---|
| 612 |
|
---|
| 613 | // draw underline
|
---|
| 614 | g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 615 | printArea.Y += 15;
|
---|
| 616 | printArea.Height -= 15;
|
---|
| 617 |
|
---|
[1112] | 618 | // draw curved rectangle.
|
---|
| 619 | Rectangle personalInfoRectangle = new Rectangle(e.MarginBounds.X, printArea.Y + 30, 280, part1Height);
|
---|
| 620 | using (GraphicsPath path = GetRoundedRectPath(personalInfoRectangle, 10))
|
---|
| 621 | {
|
---|
| 622 | g.DrawPath(Pens.Black, path);
|
---|
| 623 | }
|
---|
[804] | 624 |
|
---|
[1112] | 625 | // group header
|
---|
[1131] | 626 | s = strings.PtInfo;
|
---|
| 627 | StringFormat sf3 = new StringFormat(System.Threading.Thread.CurrentThread.CurrentUICulture.TextInfo.IsRightToLeft ? StringFormatFlags.DirectionRightToLeft : 0);
|
---|
| 628 | g.DrawString(s, fGroupTitle, Brushes.Black, new Rectangle(personalInfoRectangle.X, personalInfoRectangle.Y - 20, personalInfoRectangle.Width, 20), sf3);
|
---|
[804] | 629 |
|
---|
[1131] | 630 | StringFormat sf4 = new StringFormat(System.Threading.Thread.CurrentThread.CurrentUICulture.TextInfo.IsRightToLeft ? StringFormatFlags.DirectionRightToLeft : 0);
|
---|
| 631 | sf4.SetTabStops(0, new float[] { 75 });
|
---|
| 632 | sf4.SetDigitSubstitution(System.Threading.Thread.CurrentThread.CurrentUICulture.LCID, StringDigitSubstitute.Traditional);
|
---|
| 633 |
|
---|
[1112] | 634 | // inner rectangle for drawing strings:
|
---|
| 635 | Rectangle personalInfoInnerRectangle = new Rectangle(personalInfoRectangle.X + 20, personalInfoRectangle.Y + 20, personalInfoRectangle.Width - 40, personalInfoRectangle.Height - 40);
|
---|
[804] | 636 |
|
---|
[1112] | 637 | // Strings to write
|
---|
| 638 | StringBuilder sb = new StringBuilder(500);
|
---|
[1131] | 639 | sb.AppendLine(strings.Name + ":" + "\t" + appt.Patient.Name);
|
---|
[1112] | 640 | sb.AppendLine();
|
---|
[1131] | 641 | sb.AppendLine(strings.ID + ":" + "\t" + appt.Patient.ID);
|
---|
[1112] | 642 | sb.AppendLine();
|
---|
[1131] | 643 | sb.AppendLine(strings.DOB + ":" + "\t" + appt.Patient.DOB.ToShortDateString());
|
---|
[1112] | 644 | sb.AppendLine();
|
---|
[1131] | 645 | sb.AppendLine(strings.Age + ":" + "\t" + appt.Patient.UserFriendlyAge);
|
---|
[1125] | 646 | //sb.AppendLine();
|
---|
| 647 | //sb.AppendLine("Sex:" + "\t" + appt.Patient.Sex.ToString());
|
---|
[1112] | 648 |
|
---|
| 649 | // Draw them
|
---|
[1131] | 650 | g.DrawString(sb.ToString(), fBody, Brushes.Black, personalInfoInnerRectangle, sf4);
|
---|
[1112] | 651 |
|
---|
| 652 | // draw curved rectangle
|
---|
| 653 | Rectangle apptInfoRectangle = new Rectangle(e.MarginBounds.X + e.MarginBounds.Width - 280, printArea.Y + 30, 280, part1Height);
|
---|
| 654 | using (GraphicsPath path = GetRoundedRectPath(apptInfoRectangle, 10))
|
---|
| 655 | {
|
---|
| 656 | g.DrawPath(Pens.Black, path);
|
---|
| 657 | }
|
---|
| 658 |
|
---|
| 659 | // group header
|
---|
[1131] | 660 | s = strings.ApptInfo;
|
---|
| 661 | g.DrawString(s, fGroupTitle, Brushes.Black, new Rectangle(apptInfoRectangle.X, apptInfoRectangle.Y - 20, apptInfoRectangle.Width, 20), sf3);
|
---|
[1112] | 662 |
|
---|
| 663 | // Strings to write
|
---|
| 664 | sb = new StringBuilder();
|
---|
[1131] | 665 | sb.AppendLine(strings.Clinic + ":");
|
---|
[1112] | 666 | sb.AppendLine(appt.Resource);
|
---|
| 667 | sb.AppendLine();
|
---|
[1131] | 668 | sb.AppendLine(strings.AppointmentProvider + ":");
|
---|
| 669 | sb.AppendLine((appt.Provider == null) ? strings.none : appt.Provider.ToString()); //Appt Provider or (none) if null
|
---|
[1112] | 670 | sb.AppendLine();
|
---|
[1131] | 671 | sb.AppendLine(strings.PatientOrder + ":" + "\t" + apptOrder);
|
---|
| 672 | sb.AppendLine(strings.Date + ":" + "\t" + appt.StartTime.ToShortDateString() + " " + appt.StartTime.ToShortTimeString());
|
---|
[1112] | 673 | sb.AppendLine();
|
---|
[1131] | 674 | sb.AppendLine(strings.AppointmentNote + ":");
|
---|
| 675 | sb.AppendLine(String.IsNullOrWhiteSpace(appt.Note)? strings.none : appt.Note);
|
---|
[1112] | 676 |
|
---|
| 677 | // Draw them
|
---|
| 678 | Rectangle apptInfoInnerRectangle = new Rectangle(apptInfoRectangle.X + 20, apptInfoRectangle.Y + 20, apptInfoRectangle.Width - 40, apptInfoRectangle.Height - 40);
|
---|
| 679 |
|
---|
| 680 | // Draw them
|
---|
[1131] | 681 | g.DrawString(sb.ToString(), fBody, Brushes.Black, apptInfoInnerRectangle, sf4);
|
---|
[1112] | 682 |
|
---|
| 683 | // Move Drawing Rectangle Down
|
---|
| 684 | printArea.Y += apptInfoRectangle.Height + 30 + 20;
|
---|
| 685 | printArea.Height -= apptInfoRectangle.Height + 30 + 20;
|
---|
| 686 |
|
---|
| 687 | // Draw New Line
|
---|
| 688 | using (Pen dashpen = new Pen(Color.Black))
|
---|
| 689 | {
|
---|
| 690 | dashpen.DashStyle = DashStyle.Dash;
|
---|
| 691 | g.DrawLine(dashpen, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 692 | }
|
---|
| 693 |
|
---|
| 694 | printArea.Y += 5;
|
---|
| 695 | printArea.Height -= 5;
|
---|
| 696 |
|
---|
[1131] | 697 | s = strings.ScratchArea;
|
---|
| 698 | g.DrawString(s, fGroupTitle, Brushes.Black, printArea, sf3);
|
---|
[1112] | 699 |
|
---|
| 700 | // move down
|
---|
[1131] | 701 | printArea.Y += 240;
|
---|
| 702 | printArea.Height -= 240;
|
---|
[1112] | 703 |
|
---|
| 704 | using (Pen dashpen = new Pen(Color.Black))
|
---|
| 705 | {
|
---|
| 706 | dashpen.DashStyle = DashStyle.Dot;
|
---|
| 707 | g.DrawLine(dashpen, printArea.Location, new Point(printArea.Right, printArea.Y));
|
---|
| 708 | }
|
---|
| 709 |
|
---|
| 710 | printArea.Y += 5;
|
---|
| 711 | printArea.Height -= 5;
|
---|
| 712 |
|
---|
[1131] | 713 | s = strings.NextAppointmentInstructions;
|
---|
| 714 | g.DrawString(s, fGroupTitle, Brushes.Black, printArea, sf3);
|
---|
[1112] | 715 |
|
---|
| 716 | // Draw Footer
|
---|
| 717 | //use sf0 to print the footer (center all the way)
|
---|
[1131] | 718 | s = strings.Printed + ": " + DateTime.Now.ToString();
|
---|
[1112] | 719 | Font fFooter = new Font(FontFamily.GenericSerif, 7);
|
---|
| 720 | g.DrawString(s, fFooter, Brushes.Black, footerArea, sf0);
|
---|
| 721 |
|
---|
| 722 | g.Dispose();
|
---|
| 723 |
|
---|
[1110] | 724 | }
|
---|
[804] | 725 |
|
---|
[772] | 726 | }
|
---|
[1110] | 727 | public abstract class PrintingCreator
|
---|
| 728 | {
|
---|
| 729 | public abstract Printing PrintFactory();
|
---|
| 730 | }
|
---|
| 731 |
|
---|
| 732 | }
|
---|