From b73c5a7f2bea63ec1bb3943c342a7f4f3e54eb80 Mon Sep 17 00:00:00 2001 From: Alexandra Date: Thu, 2 Feb 2023 08:00:43 +0100 Subject: [PATCH] SHKService/CustomReportCreator, Neukunde SKFLeverkusen --- ReportImp/SHKService/CustomReportCreator.cs | 81 + .../SHKService/Quittierungsbeleg.Designer.cs | 2 + ReportImp/SHKService/SHKService.csproj | 1 + .../Betreuungsvertrag.Designer.cs | 11183 ++++++++++++++++ ReportImp/SKFLeverkusen/Betreuungsvertrag.cs | 858 ++ .../SKFLeverkusen/Betreuungsvertrag.resx | 129 + .../BudgetnachweisAnhang.Designer.cs | 778 ++ .../SKFLeverkusen/BudgetnachweisAnhang.cs | 36 + .../SKFLeverkusen/BudgetnachweisAnhang.resx | 123 + .../SKFLeverkusen/CustomReportCreator.cs | 21 + .../SKFLeverkusen/Properties/AssemblyInfo.cs | 36 + .../SKFLeverkusen/Properties/licenses.licx | 1 + ReportImp/SKFLeverkusen/SKFLeverkusen.csproj | 105 + .../SettlementReport.Designer.cs | 1072 ++ ReportImp/SKFLeverkusen/SettlementReport.cs | 239 + ReportImp/SKFLeverkusen/SettlementReport.resx | 123 + .../SettlementReport2.Designer.cs | 976 ++ ReportImp/SKFLeverkusen/SettlementReport2.cs | 70 + .../SKFLeverkusen/SettlementReport2.resx | 123 + 19 files changed, 15957 insertions(+) create mode 100644 ReportImp/SHKService/CustomReportCreator.cs create mode 100644 ReportImp/SKFLeverkusen/Betreuungsvertrag.Designer.cs create mode 100644 ReportImp/SKFLeverkusen/Betreuungsvertrag.cs create mode 100644 ReportImp/SKFLeverkusen/Betreuungsvertrag.resx create mode 100644 ReportImp/SKFLeverkusen/BudgetnachweisAnhang.Designer.cs create mode 100644 ReportImp/SKFLeverkusen/BudgetnachweisAnhang.cs create mode 100644 ReportImp/SKFLeverkusen/BudgetnachweisAnhang.resx create mode 100644 ReportImp/SKFLeverkusen/CustomReportCreator.cs create mode 100644 ReportImp/SKFLeverkusen/Properties/AssemblyInfo.cs create mode 100644 ReportImp/SKFLeverkusen/Properties/licenses.licx create mode 100644 ReportImp/SKFLeverkusen/SKFLeverkusen.csproj create mode 100644 ReportImp/SKFLeverkusen/SettlementReport.Designer.cs create mode 100644 ReportImp/SKFLeverkusen/SettlementReport.cs create mode 100644 ReportImp/SKFLeverkusen/SettlementReport.resx create mode 100644 ReportImp/SKFLeverkusen/SettlementReport2.Designer.cs create mode 100644 ReportImp/SKFLeverkusen/SettlementReport2.cs create mode 100644 ReportImp/SKFLeverkusen/SettlementReport2.resx diff --git a/ReportImp/SHKService/CustomReportCreator.cs b/ReportImp/SHKService/CustomReportCreator.cs new file mode 100644 index 000000000..d54560f19 --- /dev/null +++ b/ReportImp/SHKService/CustomReportCreator.cs @@ -0,0 +1,81 @@ +using System; +using System.Collections.Generic; +using BeWo.Data.Access; +using BeWo.Data.Entities; +using BeWo.Report; +using BeWo.Report.ReportObjects; +using BeWo.Service.ServiceImplementations; +using DevExpress.XtraReports.UI; + +namespace SHKService +{ + public class CustomReportCreator : DefaultReportCreator + { + public override XtraReport CreateServiceOverviewAllCustomersReport(int month, int year, long orgaOid, long empOid, long? serviceCategoryOid, int startDay, int endDay, bool nurFehlende) + { + var os = new OperationsServiceImp(); + var m = os.GetMandator2(false); + //if (m.AllowSbd) + //{ + // return CreateSbdLeistungsnachweisForAllCustomers(month, year, orgaOid, empOid, serviceCategoryOid ?? 0, startDay, endDay, false, "nrw"); + //} + + List lROs = ServicesOverviewRO.Create(month, year, orgaOid, empOid, startDay, endDay, serviceCategoryOid, true, nurFehlende); + + if (lROs.Count > 0) + { + String reportId = null; + if (orgaOid > 0) + { + var organisation = DAOFactory.GenericDAO.LoadByID(orgaOid); + if (organisation != null) + reportId = organisation.Name; + } + + var lServiceOverviewAllCustomersReport = this.FindReportImp(reportId); + lServiceOverviewAllCustomersReport.SetReportDataSource(lROs[0]); + (lServiceOverviewAllCustomersReport as XtraReport).CreateDocument(); + var Report = lServiceOverviewAllCustomersReport as XtraReport; + + for (int i = 1; i < lROs.Count; i++) + { + var lNext = FindReportImp(reportId); + lNext.SetReportDataSource(lROs[i]); + (lNext as XtraReport).CreateDocument(); + Report.Pages.AddRange((lNext as XtraReport).Pages); + } + + return lServiceOverviewAllCustomersReport as XtraReport; + } + return new XtraReport(); + } + + public override XtraReport CreateServiceOverviewSingleCustomerReport(long customerOid, int month, int year, long orgaOid, long empOid, long? serviceCategoryOid, int startDay, int endDay) + { + var os = new OperationsServiceImp(); + var m = os.GetMandator2(false); + //if (m.AllowSbd) + //{ + // return CreateSbdLeistungsnachweisForSingleCustomerReport(customerOid, month, year, orgaOid, empOid, serviceCategoryOid ?? 0, startDay, endDay, false, "nrw"); + //} + + String reportId = null; + if (orgaOid > 0) + { + var organisation = DAOFactory.GenericDAO.LoadByID(orgaOid); + if (organisation != null) + reportId = organisation.Name; + } + + var ro = ServicesOverviewRO.Create(customerOid, month, year, false, orgaOid, empOid, startDay, endDay, serviceCategoryOid); + var lServiceOverviewSingleCustomerReport = this.FindReportImp(reportId); + + if (ro != null) + { + lServiceOverviewSingleCustomerReport.SetReportDataSource(ro); + } + + return lServiceOverviewSingleCustomerReport as XtraReport; + } + } +} diff --git a/ReportImp/SHKService/Quittierungsbeleg.Designer.cs b/ReportImp/SHKService/Quittierungsbeleg.Designer.cs index 2a49e4ea4..8639146da 100644 --- a/ReportImp/SHKService/Quittierungsbeleg.Designer.cs +++ b/ReportImp/SHKService/Quittierungsbeleg.Designer.cs @@ -286,6 +286,7 @@ namespace SHKService this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.ServiceDescription")}); this.xrTableCell50.Name = "xrTableCell50"; + this.xrTableCell50.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F); this.xrTableCell50.StylePriority.UseBorders = false; this.xrTableCell50.StylePriority.UseFont = false; this.xrTableCell50.StylePriority.UsePadding = false; @@ -736,6 +737,7 @@ namespace SHKService this.xrPictureBox3}); this.topMarginBand1.HeightF = 118.75F; this.topMarginBand1.Name = "topMarginBand1"; + this.topMarginBand1.StylePriority.UsePadding = false; // // xrPictureBox3 // diff --git a/ReportImp/SHKService/SHKService.csproj b/ReportImp/SHKService/SHKService.csproj index c2ff33349..97755001b 100644 --- a/ReportImp/SHKService/SHKService.csproj +++ b/ReportImp/SHKService/SHKService.csproj @@ -51,6 +51,7 @@ + Component diff --git a/ReportImp/SKFLeverkusen/Betreuungsvertrag.Designer.cs b/ReportImp/SKFLeverkusen/Betreuungsvertrag.Designer.cs new file mode 100644 index 000000000..fa548d764 --- /dev/null +++ b/ReportImp/SKFLeverkusen/Betreuungsvertrag.Designer.cs @@ -0,0 +1,11183 @@ +using BeWo.Report.ReportObjects; +namespace SKFLeverkusen +{ + partial class Betreuungsvertrag + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Betreuungsvertrag)); + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); + this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand(); + this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); + this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); + this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); + this.xrLabel390 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblErwerbsmindBef = new DevExpress.XtraReports.UI.XRLabel(); + this.chkBoxTeil = new DevExpress.XtraReports.UI.XRCheckBox(); + this.chkBoxVoll = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel389 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel364 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel365 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel366 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel367 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel369 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel370 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel371 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel372 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel373 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel375 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel376 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblLebensunterhalt = new DevExpress.XtraReports.UI.XRLabel(); + this.lblErwerbsmindB = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel382 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel384 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel385 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel388 = new DevExpress.XtraReports.UI.XRLabel(); + this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); + this.Detail1 = new DevExpress.XtraReports.UI.DetailBand(); + this.xrTable9 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow24 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell(); + this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); + this.xrTable8 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell(); + this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.lblFirmaTel = new DevExpress.XtraReports.UI.XRLabel(); + this.lblTätigkeiten = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel348 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel374 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblWochenAZeit = new DevExpress.XtraReports.UI.XRLabel(); + this.lblMotZuwendung = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel381 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblFahrtpauschale = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel386 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel377 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel380 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel401 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblFirma = new DevExpress.XtraReports.UI.XRLabel(); + this.lblFirmaAnschrift = new DevExpress.XtraReports.UI.XRLabel(); + this.SubBand1 = new DevExpress.XtraReports.UI.SubBand(); + this.lblArbeitszeiten = new DevExpress.XtraReports.UI.XRLabel(); + this.tableArbeitszeiten = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblMoBeginn = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblMoPause = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblMiPause = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblMoEnde = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell(); + this.ReportFooter1 = new DevExpress.XtraReports.UI.ReportFooterBand(); + this.lblDatum = new DevExpress.XtraReports.UI.XRLabel(); + this.ReportHeader1 = new DevExpress.XtraReports.UI.ReportHeaderBand(); + this.lblZVAusscheiden = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel397 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel394 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblZVBefristung = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel392 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblZVAufnahme = new DevExpress.XtraReports.UI.XRLabel(); + this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); + this.xrLabel200 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel195 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel196 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel197 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox63 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel198 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel199 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel189 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel190 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox62 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox61 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel191 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel192 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox60 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel193 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel194 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel177 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel178 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel179 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel180 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel181 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox57 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel182 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel183 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox58 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel184 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel185 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel186 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox59 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel187 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel188 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel133 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel134 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox56 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel167 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel168 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel169 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox55 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel170 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel171 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox54 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel172 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel173 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel174 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel175 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel176 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel132 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel165 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel166 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel162 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel163 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel164 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel63 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel154 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox51 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel155 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel156 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox52 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel157 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel158 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel159 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox53 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel160 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel161 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox50 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel137 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel153 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox49 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel135 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel136 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel149 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel150 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox47 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel151 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel152 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox48 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel145 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel146 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox45 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel147 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel148 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox46 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel142 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel143 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel144 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox44 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel138 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel139 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox43 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel140 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel141 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox42 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel130 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel131 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel126 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox41 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel127 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox40 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel128 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel129 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel116 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel117 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel118 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox35 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel119 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox36 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox37 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel120 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel121 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel122 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel123 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox39 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox38 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel124 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel125 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox30 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox31 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox32 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel42 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel43 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox34 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox33 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel114 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel115 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel110 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel111 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox28 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox29 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel112 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel113 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel108 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel107 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox27 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox26 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel101 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox25 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel102 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel103 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel104 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel105 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel106 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel109 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel92 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox23 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox22 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel93 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel94 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel95 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel96 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel97 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel98 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel99 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox24 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel100 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel90 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox21 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel91 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel89 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel77 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel78 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel79 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel80 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel81 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel82 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel83 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel84 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel85 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel86 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel87 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox19 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox20 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel88 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel75 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel76 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox18 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox17 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel71 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel72 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel73 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel74 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox16 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox14 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel67 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel68 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel69 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel70 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox15 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel60 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel61 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel62 = new DevExpress.XtraReports.UI.XRLabel(); + this.chkBoxEinpersonenhh = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel64 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel65 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel66 = new DevExpress.XtraReports.UI.XRLabel(); + this.chkBoxMehrpersonenhh = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox11 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel58 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel59 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel50 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel51 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox10 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel52 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel53 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel54 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel55 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel56 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel57 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel46 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel47 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox8 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel48 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel49 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox9 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox7 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel26 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel29 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel30 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel31 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox4 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox5 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox6 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox3 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox2 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel44 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel45 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel41 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox1 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel37 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel38 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel39 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel33 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel34 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel561 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel36 = new DevExpress.XtraReports.UI.XRLabel(); + this.SubBand2 = new DevExpress.XtraReports.UI.SubBand(); + this.xrLabel346 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox221 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel399 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox256 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel329 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel328 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel327 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox255 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel326 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox254 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel325 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel324 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel323 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel322 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel321 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox249 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel320 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox250 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox251 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel319 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel318 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel317 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel316 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox253 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox252 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel315 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel314 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel313 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel312 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel311 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox244 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel310 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox246 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel309 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel308 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel307 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel306 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox248 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox247 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel305 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel304 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel299 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel298 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox218 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox217 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel297 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox216 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel296 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel295 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel291 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel278 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel277 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel276 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel275 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel274 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel273 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox210 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel253 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel252 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel251 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox211 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox209 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel250 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel249 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel248 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel247 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox208 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel246 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel245 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel244 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel243 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel242 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel241 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel240 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel239 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel238 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel237 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel236 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox205 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel235 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel234 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox206 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox204 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel233 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel232 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel231 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel230 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel229 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel223 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel222 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox202 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox203 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel221 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel220 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel216 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel215 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel214 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox201 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel211 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel210 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel209 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel208 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox200 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel207 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel206 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel205 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel204 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel203 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel202 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox207 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel213 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel212 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel256 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel255 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel254 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox212 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel228 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel227 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel226 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel225 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox213 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox215 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel224 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel219 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel218 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox214 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel217 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel262 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel261 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel260 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox219 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel259 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox220 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel258 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel257 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel279 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox226 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel272 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox225 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel271 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel270 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel268 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel267 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel266 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox222 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel265 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox223 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox224 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel264 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel263 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel294 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel293 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox242 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox243 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel292 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel290 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel289 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel288 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox241 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox240 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel287 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox239 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel286 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel285 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel281 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel331 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel330 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel303 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel302 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel301 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel300 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel359 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox234 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel358 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel357 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel356 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox235 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox233 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel355 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel354 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel353 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel352 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox232 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel351 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel350 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel349 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel345 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel344 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel343 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel342 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel341 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel340 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox228 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel339 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel338 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel337 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel336 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox229 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox231 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel335 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel333 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox230 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel282 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel362 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel361 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox236 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox238 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel360 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel332 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel284 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox237 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel283 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel269 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox227 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel280 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox245 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrLabel347 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel201 = new DevExpress.XtraReports.UI.XRLabel(); + this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand(); + this.Detail2 = new DevExpress.XtraReports.UI.DetailBand(); + this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand(); + this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.SubBand3 = new DevExpress.XtraReports.UI.SubBand(); + this.SubBand4 = new DevExpress.XtraReports.UI.SubBand(); + this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText(); + this.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.tableArbeitszeiten)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); + // + // Detail + // + this.Detail.Font = new System.Drawing.Font("Arial", 10F); + this.Detail.HeightF = 0F; + this.Detail.Name = "Detail"; + this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.Detail.StylePriority.UseFont = false; + this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // PageFooter + // + this.PageFooter.HeightF = 0F; + this.PageFooter.Name = "PageFooter"; + this.PageFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.PageFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // topMarginBand1 + // + this.topMarginBand1.HeightF = 48F; + this.topMarginBand1.Name = "topMarginBand1"; + // + // bottomMarginBand1 + // + this.bottomMarginBand1.HeightF = 41F; + this.bottomMarginBand1.Name = "bottomMarginBand1"; + // + // ReportHeader + // + this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel390, + this.lblErwerbsmindBef, + this.chkBoxTeil, + this.chkBoxVoll, + this.xrLabel389, + this.xrLabel364, + this.xrLabel365, + this.xrLabel366, + this.xrLabel367, + this.xrLabel369, + this.xrLabel370, + this.xrLabel371, + this.xrLabel372, + this.xrLabel373, + this.xrLabel375, + this.xrLabel376, + this.lblLebensunterhalt, + this.lblErwerbsmindB, + this.xrLabel382, + this.xrLabel384, + this.xrLabel385, + this.xrLabel388}); + this.ReportHeader.HeightF = 185.5604F; + this.ReportHeader.Name = "ReportHeader"; + this.ReportHeader.StylePriority.UseForeColor = false; + // + // xrLabel390 + // + this.xrLabel390.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel390.LocationFloat = new DevExpress.Utils.PointFloat(350.4199F, 146.977F); + this.xrLabel390.Name = "xrLabel390"; + this.xrLabel390.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel390.SizeF = new System.Drawing.SizeF(207.289F, 24F); + this.xrLabel390.StylePriority.UseFont = false; + this.xrLabel390.Text = "ggf. Befristung Erwerbsmind.:"; + // + // lblErwerbsmindBef + // + this.lblErwerbsmindBef.Font = new System.Drawing.Font("Arial", 10F); + this.lblErwerbsmindBef.LocationFloat = new DevExpress.Utils.PointFloat(557.709F, 146.9771F); + this.lblErwerbsmindBef.Name = "lblErwerbsmindBef"; + this.lblErwerbsmindBef.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblErwerbsmindBef.SizeF = new System.Drawing.SizeF(116.5801F, 24F); + this.lblErwerbsmindBef.StylePriority.UseFont = false; + // + // chkBoxTeil + // + this.chkBoxTeil.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.chkBoxTeil.LocationFloat = new DevExpress.Utils.PointFloat(616.8608F, 98.97681F); + this.chkBoxTeil.Name = "chkBoxTeil"; + this.chkBoxTeil.SizeF = new System.Drawing.SizeF(57.64471F, 24.00002F); + this.chkBoxTeil.StylePriority.UseBorders = false; + this.chkBoxTeil.StylePriority.UseFont = false; + this.chkBoxTeil.StylePriority.UseTextAlignment = false; + this.chkBoxTeil.Text = "Teil"; + this.chkBoxTeil.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // chkBoxVoll + // + this.chkBoxVoll.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.chkBoxVoll.LocationFloat = new DevExpress.Utils.PointFloat(557.709F, 98.97681F); + this.chkBoxVoll.Name = "chkBoxVoll"; + this.chkBoxVoll.SizeF = new System.Drawing.SizeF(59.15186F, 24.00015F); + this.chkBoxVoll.StylePriority.UseBorders = false; + this.chkBoxVoll.StylePriority.UseFont = false; + this.chkBoxVoll.StylePriority.UseTextAlignment = false; + this.chkBoxVoll.Text = " Voll"; + this.chkBoxVoll.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel389 + // + this.xrLabel389.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel389.LocationFloat = new DevExpress.Utils.PointFloat(350.4199F, 98.97711F); + this.xrLabel389.Name = "xrLabel389"; + this.xrLabel389.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel389.SizeF = new System.Drawing.SizeF(207.289F, 24F); + this.xrLabel389.StylePriority.UseFont = false; + this.xrLabel389.Text = "ggf. Erwerbsminderung:"; + // + // xrLabel364 + // + this.xrLabel364.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel364.LocationFloat = new DevExpress.Utils.PointFloat(489.125F, 50.97713F); + this.xrLabel364.Name = "xrLabel364"; + this.xrLabel364.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel364.SizeF = new System.Drawing.SizeF(185.0435F, 24F); + this.xrLabel364.StylePriority.UseFont = false; + this.xrLabel364.Text = "[PostCode] [Town]"; + // + // xrLabel365 + // + this.xrLabel365.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Street")}); + this.xrLabel365.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel365.LocationFloat = new DevExpress.Utils.PointFloat(149.5801F, 50.97712F); + this.xrLabel365.Name = "xrLabel365"; + this.xrLabel365.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel365.SizeF = new System.Drawing.SizeF(197.875F, 24F); + this.xrLabel365.StylePriority.UseFont = false; + this.xrLabel365.Text = "Vorname:"; + // + // xrLabel366 + // + this.xrLabel366.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Mobile")}); + this.xrLabel366.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel366.LocationFloat = new DevExpress.Utils.PointFloat(150.4551F, 74.9771F); + this.xrLabel366.Name = "xrLabel366"; + this.xrLabel366.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel366.SizeF = new System.Drawing.SizeF(197F, 24F); + this.xrLabel366.StylePriority.UseFont = false; + this.xrLabel366.Text = "Vorname:"; + // + // xrLabel367 + // + this.xrLabel367.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Mail")}); + this.xrLabel367.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel367.LocationFloat = new DevExpress.Utils.PointFloat(150.4552F, 98.97697F); + this.xrLabel367.Name = "xrLabel367"; + this.xrLabel367.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel367.SizeF = new System.Drawing.SizeF(196.9999F, 24F); + this.xrLabel367.StylePriority.UseFont = false; + this.xrLabel367.Text = "Vorname:"; + // + // xrLabel369 + // + this.xrLabel369.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Phone")}); + this.xrLabel369.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel369.LocationFloat = new DevExpress.Utils.PointFloat(490F, 74.97711F); + this.xrLabel369.Name = "xrLabel369"; + this.xrLabel369.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel369.SizeF = new System.Drawing.SizeF(184.1684F, 24F); + this.xrLabel369.StylePriority.UseFont = false; + this.xrLabel369.Text = "Vorname:"; + // + // xrLabel370 + // + this.xrLabel370.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel370.LocationFloat = new DevExpress.Utils.PointFloat(349.5449F, 50.97712F); + this.xrLabel370.Name = "xrLabel370"; + this.xrLabel370.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel370.SizeF = new System.Drawing.SizeF(139.58F, 24F); + this.xrLabel370.StylePriority.UseFont = false; + this.xrLabel370.Text = "PLZ/Ort:"; + // + // xrLabel371 + // + this.xrLabel371.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel371.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 50.97712F); + this.xrLabel371.Name = "xrLabel371"; + this.xrLabel371.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel371.SizeF = new System.Drawing.SizeF(139.58F, 24F); + this.xrLabel371.StylePriority.UseFont = false; + this.xrLabel371.Text = "Straße:"; + // + // xrLabel372 + // + this.xrLabel372.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel372.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 74.9771F); + this.xrLabel372.Name = "xrLabel372"; + this.xrLabel372.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel372.SizeF = new System.Drawing.SizeF(139.58F, 24F); + this.xrLabel372.StylePriority.UseFont = false; + this.xrLabel372.Text = "Handy:"; + // + // xrLabel373 + // + this.xrLabel373.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel373.LocationFloat = new DevExpress.Utils.PointFloat(10.87513F, 98.97711F); + this.xrLabel373.Name = "xrLabel373"; + this.xrLabel373.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel373.SizeF = new System.Drawing.SizeF(139.58F, 24F); + this.xrLabel373.StylePriority.UseFont = false; + this.xrLabel373.Text = "E-Mail:"; + // + // xrLabel375 + // + this.xrLabel375.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel375.LocationFloat = new DevExpress.Utils.PointFloat(350.4199F, 74.9771F); + this.xrLabel375.Name = "xrLabel375"; + this.xrLabel375.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel375.SizeF = new System.Drawing.SizeF(139.58F, 24F); + this.xrLabel375.StylePriority.UseFont = false; + this.xrLabel375.Text = "Festnetznummer:"; + // + // xrLabel376 + // + this.xrLabel376.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Occupation")}); + this.xrLabel376.Font = new System.Drawing.Font("Arial", 10F); + this.xrLabel376.LocationFloat = new DevExpress.Utils.PointFloat(150.4552F, 122.977F); + this.xrLabel376.Name = "xrLabel376"; + this.xrLabel376.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel376.SizeF = new System.Drawing.SizeF(196.9999F, 24F); + this.xrLabel376.StylePriority.UseFont = false; + this.xrLabel376.Text = "Vorname:"; + // + // lblLebensunterhalt + // + this.lblLebensunterhalt.Font = new System.Drawing.Font("Arial", 10F); + this.lblLebensunterhalt.LocationFloat = new DevExpress.Utils.PointFloat(150.4552F, 146.9771F); + this.lblLebensunterhalt.Name = "lblLebensunterhalt"; + this.lblLebensunterhalt.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblLebensunterhalt.SizeF = new System.Drawing.SizeF(196.9999F, 24F); + this.lblLebensunterhalt.StylePriority.UseFont = false; + // + // lblErwerbsmindB + // + this.lblErwerbsmindB.Font = new System.Drawing.Font("Arial", 10F); + this.lblErwerbsmindB.LocationFloat = new DevExpress.Utils.PointFloat(557.7089F, 122.9771F); + this.lblErwerbsmindB.Name = "lblErwerbsmindB"; + this.lblErwerbsmindB.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblErwerbsmindB.SizeF = new System.Drawing.SizeF(116.5801F, 24F); + this.lblErwerbsmindB.StylePriority.UseFont = false; + // + // xrLabel382 + // + this.xrLabel382.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel382.LocationFloat = new DevExpress.Utils.PointFloat(10.87523F, 122.977F); + this.xrLabel382.Name = "xrLabel382"; + this.xrLabel382.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel382.SizeF = new System.Drawing.SizeF(139.58F, 24F); + this.xrLabel382.StylePriority.UseFont = false; + this.xrLabel382.Text = "ggf. Beruf:"; + // + // xrLabel384 + // + this.xrLabel384.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel384.LocationFloat = new DevExpress.Utils.PointFloat(10.87523F, 146.9771F); + this.xrLabel384.Name = "xrLabel384"; + this.xrLabel384.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel384.SizeF = new System.Drawing.SizeF(139.58F, 24F); + this.xrLabel384.StylePriority.UseFont = false; + this.xrLabel384.Text = "Lebensunterhalt:"; + // + // xrLabel385 + // + this.xrLabel385.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel385.LocationFloat = new DevExpress.Utils.PointFloat(350.4199F, 122.977F); + this.xrLabel385.Name = "xrLabel385"; + this.xrLabel385.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel385.SizeF = new System.Drawing.SizeF(207.289F, 24F); + this.xrLabel385.StylePriority.UseFont = false; + this.xrLabel385.Text = "ggf. Beginn Erwerbsmind.:"; + // + // xrLabel388 + // + this.xrLabel388.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); + this.xrLabel388.LocationFloat = new DevExpress.Utils.PointFloat(10.00004F, 0F); + this.xrLabel388.Name = "xrLabel388"; + this.xrLabel388.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel388.SizeF = new System.Drawing.SizeF(664.1683F, 25F); + this.xrLabel388.StylePriority.UseFont = false; + this.xrLabel388.StylePriority.UseTextAlignment = false; + this.xrLabel388.Text = "ZV-Teilnehmer/in: [Name]"; + this.xrLabel388.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // DetailReport + // + this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail1, + this.GroupHeader1, + this.GroupFooter1, + this.ReportFooter1, + this.ReportHeader1}); + this.DetailReport.DataMember = "EnvironmentPersons"; + this.DetailReport.DataSource = this.bindingSource1; + this.DetailReport.Level = 1; + this.DetailReport.Name = "DetailReport"; + // + // Detail1 + // + this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable9}); + this.Detail1.HeightF = 18F; + this.Detail1.Name = "Detail1"; + // + // xrTable9 + // + this.xrTable9.LocationFloat = new DevExpress.Utils.PointFloat(10.00002F, 0F); + this.xrTable9.Name = "xrTable9"; + this.xrTable9.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow24}); + this.xrTable9.SizeF = new System.Drawing.SizeF(653.2933F, 18F); + this.xrTable9.StylePriority.UseFont = false; + // + // xrTableRow24 + // + this.xrTableRow24.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell50, + this.xrTableCell51, + this.xrTableCell54, + this.xrTableCell52}); + this.xrTableRow24.Name = "xrTableRow24"; + this.xrTableRow24.Weight = 1.125D; + // + // xrTableCell50 + // + this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "EnvironmentPersons.Person")}); + this.xrTableCell50.Name = "xrTableCell50"; + this.xrTableCell50.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); + this.xrTableCell50.StylePriority.UseBorders = false; + this.xrTableCell50.StylePriority.UseFont = false; + this.xrTableCell50.StylePriority.UsePadding = false; + this.xrTableCell50.Text = "Betreuer"; + this.xrTableCell50.Weight = 0.1830217826312335D; + // + // xrTableCell51 + // + this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell51.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "EnvironmentPersons.RelationRole")}); + this.xrTableCell51.Name = "xrTableCell51"; + this.xrTableCell51.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); + this.xrTableCell51.StylePriority.UseBorders = false; + this.xrTableCell51.StylePriority.UseFont = false; + this.xrTableCell51.StylePriority.UsePadding = false; + this.xrTableCell51.Text = "Rolle"; + this.xrTableCell51.Weight = 0.19859813129588633D; + // + // xrTableCell54 + // + this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell54.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "EnvironmentPersons.Person.AddressString")}); + this.xrTableCell54.Multiline = true; + this.xrTableCell54.Name = "xrTableCell54"; + this.xrTableCell54.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); + this.xrTableCell54.StylePriority.UseBorders = false; + this.xrTableCell54.StylePriority.UsePadding = false; + this.xrTableCell54.Text = "xrTableCell54"; + this.xrTableCell54.Weight = 0.23028790245174993D; + // + // xrTableCell52 + // + this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell52.Name = "xrTableCell52"; + this.xrTableCell52.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); + this.xrTableCell52.StylePriority.UseBorders = false; + this.xrTableCell52.StylePriority.UseFont = false; + this.xrTableCell52.StylePriority.UsePadding = false; + this.xrTableCell52.Text = "[Person.Communication1] [Person.Communication2] [Person.Communication3] [Person.C" + + "ommunication4] "; + this.xrTableCell52.Weight = 0.40568292920834553D; + // + // GroupHeader1 + // + this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable8}); + this.GroupHeader1.HeightF = 39.36754F; + this.GroupHeader1.Name = "GroupHeader1"; + // + // xrTable8 + // + this.xrTable8.LocationFloat = new DevExpress.Utils.PointFloat(9.999992F, 21.36752F); + this.xrTable8.Name = "xrTable8"; + this.xrTable8.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow23}); + this.xrTable8.SizeF = new System.Drawing.SizeF(653.2933F, 18F); + // + // xrTableRow23 + // + this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell47, + this.xrTableCell48, + this.xrTableCell53, + this.xrTableCell49}); + this.xrTableRow23.Name = "xrTableRow23"; + this.xrTableRow23.Weight = 1.0588235294117647D; + // + // xrTableCell47 + // + this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell47.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrTableCell47.Name = "xrTableCell47"; + this.xrTableCell47.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); + this.xrTableCell47.StylePriority.UseBorders = false; + this.xrTableCell47.StylePriority.UseFont = false; + this.xrTableCell47.StylePriority.UsePadding = false; + this.xrTableCell47.Text = "Person"; + this.xrTableCell47.Weight = 0.18302173476531583D; + // + // xrTableCell48 + // + this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell48.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrTableCell48.Name = "xrTableCell48"; + this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); + this.xrTableCell48.StylePriority.UseBorders = false; + this.xrTableCell48.StylePriority.UseFont = false; + this.xrTableCell48.StylePriority.UsePadding = false; + this.xrTableCell48.Text = "Rolle"; + this.xrTableCell48.Weight = 0.19859821471175124D; + // + // xrTableCell53 + // + this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell53.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrTableCell53.Name = "xrTableCell53"; + this.xrTableCell53.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); + this.xrTableCell53.StylePriority.UseBorders = false; + this.xrTableCell53.StylePriority.UseFont = false; + this.xrTableCell53.StylePriority.UsePadding = false; + this.xrTableCell53.StylePriority.UseTextAlignment = false; + this.xrTableCell53.Text = "Adresse"; + this.xrTableCell53.Weight = 0.23028792633062667D; + // + // xrTableCell49 + // + this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell49.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrTableCell49.Name = "xrTableCell49"; + this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); + this.xrTableCell49.StylePriority.UseBorders = false; + this.xrTableCell49.StylePriority.UseFont = false; + this.xrTableCell49.StylePriority.UsePadding = false; + this.xrTableCell49.Text = "Telefon"; + this.xrTableCell49.Weight = 0.40568290532946877D; + // + // GroupFooter1 + // + this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.lblFirmaTel, + this.lblTätigkeiten, + this.xrLabel348, + this.xrLabel374, + this.lblWochenAZeit, + this.lblMotZuwendung, + this.xrLabel381, + this.lblFahrtpauschale, + this.xrLabel386, + this.xrLabel377, + this.xrLabel380, + this.xrLabel401, + this.lblFirma, + this.lblFirmaAnschrift}); + this.GroupFooter1.HeightF = 179.9998F; + this.GroupFooter1.Name = "GroupFooter1"; + this.GroupFooter1.SubBands.AddRange(new DevExpress.XtraReports.UI.SubBand[] { + this.SubBand1}); + // + // lblFirmaTel + // + this.lblFirmaTel.Font = new System.Drawing.Font("Arial", 10F); + this.lblFirmaTel.LocationFloat = new DevExpress.Utils.PointFloat(341.5394F, 51.04167F); + this.lblFirmaTel.Multiline = true; + this.lblFirmaTel.Name = "lblFirmaTel"; + this.lblFirmaTel.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblFirmaTel.SizeF = new System.Drawing.SizeF(271.7408F, 24F); + this.lblFirmaTel.StylePriority.UseFont = false; + this.lblFirmaTel.Text = "Kontakt"; + // + // lblTätigkeiten + // + this.lblTätigkeiten.Font = new System.Drawing.Font("Arial", 10F); + this.lblTätigkeiten.LocationFloat = new DevExpress.Utils.PointFloat(149.58F, 88.54166F); + this.lblTätigkeiten.Multiline = true; + this.lblTätigkeiten.Name = "lblTätigkeiten"; + this.lblTätigkeiten.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblTätigkeiten.SizeF = new System.Drawing.SizeF(523.7133F, 24F); + this.lblTätigkeiten.StylePriority.UseFont = false; + // + // xrLabel348 + // + this.xrLabel348.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel348.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 88.54166F); + this.xrLabel348.Name = "xrLabel348"; + this.xrLabel348.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel348.SizeF = new System.Drawing.SizeF(139.58F, 24F); + this.xrLabel348.StylePriority.UseFont = false; + this.xrLabel348.Text = "Tätigkeiten:"; + // + // xrLabel374 + // + this.xrLabel374.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel374.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 112.5417F); + this.xrLabel374.Name = "xrLabel374"; + this.xrLabel374.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel374.SizeF = new System.Drawing.SizeF(139.58F, 27.99988F); + this.xrLabel374.StylePriority.UseFont = false; + this.xrLabel374.Text = "Wochenarbeitszeit:"; + // + // lblWochenAZeit + // + this.lblWochenAZeit.Font = new System.Drawing.Font("Arial", 10F); + this.lblWochenAZeit.LocationFloat = new DevExpress.Utils.PointFloat(149.5799F, 112.5416F); + this.lblWochenAZeit.Name = "lblWochenAZeit"; + this.lblWochenAZeit.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblWochenAZeit.SizeF = new System.Drawing.SizeF(63.90639F, 27.99988F); + this.lblWochenAZeit.StylePriority.UseFont = false; + // + // lblMotZuwendung + // + this.lblMotZuwendung.Font = new System.Drawing.Font("Arial", 10F); + this.lblMotZuwendung.LocationFloat = new DevExpress.Utils.PointFloat(480.2034F, 112.5416F); + this.lblMotZuwendung.Name = "lblMotZuwendung"; + this.lblMotZuwendung.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblMotZuwendung.SizeF = new System.Drawing.SizeF(44F, 28F); + this.lblMotZuwendung.StylePriority.UseFont = false; + // + // xrLabel381 + // + this.xrLabel381.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel381.LocationFloat = new DevExpress.Utils.PointFloat(303.7245F, 112.5416F); + this.xrLabel381.Name = "xrLabel381"; + this.xrLabel381.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel381.SizeF = new System.Drawing.SizeF(176.4789F, 27.99988F); + this.xrLabel381.StylePriority.UseFont = false; + this.xrLabel381.Text = "Motivationszuwendung:"; + // + // lblFahrtpauschale + // + this.lblFahrtpauschale.Font = new System.Drawing.Font("Arial", 10F); + this.lblFahrtpauschale.LocationFloat = new DevExpress.Utils.PointFloat(480.2034F, 140.5415F); + this.lblFahrtpauschale.Name = "lblFahrtpauschale"; + this.lblFahrtpauschale.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblFahrtpauschale.SizeF = new System.Drawing.SizeF(44F, 28F); + this.lblFahrtpauschale.StylePriority.UseFont = false; + // + // xrLabel386 + // + this.xrLabel386.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel386.LocationFloat = new DevExpress.Utils.PointFloat(303.7245F, 140.5415F); + this.xrLabel386.Name = "xrLabel386"; + this.xrLabel386.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel386.SizeF = new System.Drawing.SizeF(176.4789F, 28F); + this.xrLabel386.StylePriority.UseFont = false; + this.xrLabel386.Text = "Fahrtkostenpauschale:"; + // + // xrLabel377 + // + this.xrLabel377.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel377.LocationFloat = new DevExpress.Utils.PointFloat(213.4863F, 112.5416F); + this.xrLabel377.Name = "xrLabel377"; + this.xrLabel377.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel377.SizeF = new System.Drawing.SizeF(77.07231F, 27.99988F); + this.xrLabel377.StylePriority.UseFont = false; + this.xrLabel377.Text = "Std./Wo."; + // + // xrLabel380 + // + this.xrLabel380.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel380.LocationFloat = new DevExpress.Utils.PointFloat(524.2034F, 112.5415F); + this.xrLabel380.Multiline = true; + this.xrLabel380.Name = "xrLabel380"; + this.xrLabel380.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel380.SizeF = new System.Drawing.SizeF(149.0897F, 27.99999F); + this.xrLabel380.StylePriority.UseFont = false; + this.xrLabel380.Text = "EUR/ Anwesenheitsstunde"; + // + // xrLabel401 + // + this.xrLabel401.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel401.LocationFloat = new DevExpress.Utils.PointFloat(524.2034F, 140.5415F); + this.xrLabel401.Name = "xrLabel401"; + this.xrLabel401.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel401.SizeF = new System.Drawing.SizeF(149.0897F, 28F); + this.xrLabel401.StylePriority.UseFont = false; + this.xrLabel401.Text = "EUR / Anwesenheitstag"; + // + // lblFirma + // + this.lblFirma.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); + this.lblFirma.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 26.04167F); + this.lblFirma.Name = "lblFirma"; + this.lblFirma.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblFirma.SizeF = new System.Drawing.SizeF(663.2932F, 25F); + this.lblFirma.StylePriority.UseFont = false; + this.lblFirma.StylePriority.UseTextAlignment = false; + this.lblFirma.Text = "ZV-Unternehmen: "; + this.lblFirma.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // lblFirmaAnschrift + // + this.lblFirmaAnschrift.Font = new System.Drawing.Font("Arial", 10F); + this.lblFirmaAnschrift.LocationFloat = new DevExpress.Utils.PointFloat(161.4028F, 51.04167F); + this.lblFirmaAnschrift.Multiline = true; + this.lblFirmaAnschrift.Name = "lblFirmaAnschrift"; + this.lblFirmaAnschrift.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblFirmaAnschrift.SizeF = new System.Drawing.SizeF(179.5756F, 24F); + this.lblFirmaAnschrift.StylePriority.UseFont = false; + this.lblFirmaAnschrift.Text = "Anschrift"; + // + // SubBand1 + // + this.SubBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.lblArbeitszeiten, + this.tableArbeitszeiten}); + this.SubBand1.HeightF = 133.75F; + this.SubBand1.Name = "SubBand1"; + // + // lblArbeitszeiten + // + this.lblArbeitszeiten.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.lblArbeitszeiten.LocationFloat = new DevExpress.Utils.PointFloat(10.97841F, 0F); + this.lblArbeitszeiten.Name = "lblArbeitszeiten"; + this.lblArbeitszeiten.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblArbeitszeiten.SizeF = new System.Drawing.SizeF(664.1683F, 24F); + this.lblArbeitszeiten.StylePriority.UseFont = false; + this.lblArbeitszeiten.Text = "Arbeitszeiten: Gültig von [Customer.Arbeitszeiten.GueltigVon!dd.MM.yyyy] bis [Cus" + + "tomer.Arbeitszeiten.GueltigBis!dd.MM.yyyy]"; + // + // tableArbeitszeiten + // + this.tableArbeitszeiten.BorderColor = System.Drawing.Color.Black; + this.tableArbeitszeiten.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.tableArbeitszeiten.LocationFloat = new DevExpress.Utils.PointFloat(10.97841F, 24.00004F); + this.tableArbeitszeiten.Name = "tableArbeitszeiten"; + this.tableArbeitszeiten.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.tableArbeitszeiten.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow3, + this.xrTableRow4, + this.xrTableRow5, + this.xrTableRow6}); + this.tableArbeitszeiten.SizeF = new System.Drawing.SizeF(664.1684F, 100F); + this.tableArbeitszeiten.StylePriority.UseFont = false; + this.tableArbeitszeiten.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrTableRow3 + // + this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell8, + this.xrTableCell9, + this.xrTableCell3, + this.xrTableCell5, + this.xrTableCell4, + this.xrTableCell10, + this.xrTableCell12, + this.xrTableCell14, + this.xrTableCell6}); + this.xrTableRow3.Name = "xrTableRow3"; + this.xrTableRow3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.xrTableRow3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableRow3.Weight = 1.25D; + // + // xrTableCell8 + // + this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell8.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell8.Name = "xrTableCell8"; + this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell8.StylePriority.UseBorders = false; + this.xrTableCell8.StylePriority.UseFont = false; + this.xrTableCell8.StylePriority.UsePadding = false; + this.xrTableCell8.StylePriority.UseTextAlignment = false; + this.xrTableCell8.Text = "Arbeitstage:"; + this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell8.Weight = 0.11363635894501924D; + // + // xrTableCell9 + // + this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell9.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell9.Name = "xrTableCell9"; + this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell9.StylePriority.UseBorders = false; + this.xrTableCell9.StylePriority.UseFont = false; + this.xrTableCell9.StylePriority.UsePadding = false; + this.xrTableCell9.StylePriority.UseTextAlignment = false; + this.xrTableCell9.Text = "Montag"; + this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell9.Weight = 0.10101009069858014D; + // + // xrTableCell3 + // + this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell3.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell3.Name = "xrTableCell3"; + this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell3.StylePriority.UseBorders = false; + this.xrTableCell3.StylePriority.UseFont = false; + this.xrTableCell3.StylePriority.UsePadding = false; + this.xrTableCell3.StylePriority.UseTextAlignment = false; + this.xrTableCell3.Text = "Dienstag"; + this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell3.Weight = 0.10101003290014023D; + // + // xrTableCell5 + // + this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell5.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell5.Name = "xrTableCell5"; + this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell5.StylePriority.UseBorders = false; + this.xrTableCell5.StylePriority.UseFont = false; + this.xrTableCell5.StylePriority.UsePadding = false; + this.xrTableCell5.StylePriority.UseTextAlignment = false; + this.xrTableCell5.Text = "Mittwoch"; + this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell5.Weight = 0.1010100136339936D; + // + // xrTableCell4 + // + this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell4.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell4.Name = "xrTableCell4"; + this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell4.StylePriority.UseBorders = false; + this.xrTableCell4.StylePriority.UseFont = false; + this.xrTableCell4.StylePriority.UsePadding = false; + this.xrTableCell4.StylePriority.UseTextAlignment = false; + this.xrTableCell4.Text = "Donnerstag"; + this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell4.Weight = 0.10101009069858014D; + // + // xrTableCell10 + // + this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell10.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell10.Name = "xrTableCell10"; + this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell10.StylePriority.UseBorders = false; + this.xrTableCell10.StylePriority.UseFont = false; + this.xrTableCell10.StylePriority.UsePadding = false; + this.xrTableCell10.StylePriority.UseTextAlignment = false; + xrSummary1.FormatString = "{0:0.##}"; + this.xrTableCell10.Summary = xrSummary1; + this.xrTableCell10.Text = "Freitag"; + this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell10.Weight = 0.10101009738025651D; + // + // xrTableCell12 + // + this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell12.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell12.Name = "xrTableCell12"; + this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 0, 100F); + this.xrTableCell12.StylePriority.UseBorders = false; + this.xrTableCell12.StylePriority.UseFont = false; + this.xrTableCell12.StylePriority.UsePadding = false; + this.xrTableCell12.StylePriority.UseTextAlignment = false; + this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell12.Weight = 0.026266654790787117D; + // + // xrTableCell14 + // + this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell14.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell14.Name = "xrTableCell14"; + this.xrTableCell14.StylePriority.UseBorders = false; + this.xrTableCell14.StylePriority.UseFont = false; + this.xrTableCell14.StylePriority.UsePadding = false; + this.xrTableCell14.StylePriority.UseTextAlignment = false; + this.xrTableCell14.Text = "Samstag"; + this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell14.Weight = 0.094696969965346947D; + // + // xrTableCell6 + // + this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell6.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell6.Name = "xrTableCell6"; + this.xrTableCell6.StylePriority.UseBorders = false; + this.xrTableCell6.StylePriority.UseFont = false; + this.xrTableCell6.StylePriority.UseTextAlignment = false; + this.xrTableCell6.Text = "Sonntag"; + this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell6.Weight = 0.098946099436340293D; + // + // xrTableRow4 + // + this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell7, + this.lblMoBeginn, + this.xrTableCell13, + this.xrTableCell15, + this.xrTableCell16, + this.xrTableCell17, + this.xrTableCell18, + this.xrTableCell19, + this.xrTableCell20}); + this.xrTableRow4.Name = "xrTableRow4"; + this.xrTableRow4.Weight = 1.25D; + // + // xrTableCell7 + // + this.xrTableCell7.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell7.Name = "xrTableCell7"; + this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell7.StylePriority.UseFont = false; + this.xrTableCell7.StylePriority.UsePadding = false; + this.xrTableCell7.StylePriority.UseTextAlignment = false; + this.xrTableCell7.Text = "Arbeitsbeginn:"; + this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell7.Weight = 0.11363631077965243D; + // + // lblMoBeginn + // + this.lblMoBeginn.Font = new System.Drawing.Font("Arial", 9.75F); + this.lblMoBeginn.Name = "lblMoBeginn"; + this.lblMoBeginn.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.lblMoBeginn.StylePriority.UseFont = false; + this.lblMoBeginn.StylePriority.UsePadding = false; + this.lblMoBeginn.StylePriority.UseTextAlignment = false; + this.lblMoBeginn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.lblMoBeginn.Weight = 0.10101009069858036D; + // + // xrTableCell13 + // + this.xrTableCell13.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell13.Name = "xrTableCell13"; + this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell13.StylePriority.UseFont = false; + this.xrTableCell13.StylePriority.UsePadding = false; + this.xrTableCell13.StylePriority.UseTextAlignment = false; + this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell13.Weight = 0.10101007143243349D; + // + // xrTableCell15 + // + this.xrTableCell15.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell15.Name = "xrTableCell15"; + this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell15.StylePriority.UseFont = false; + this.xrTableCell15.StylePriority.UsePadding = false; + this.xrTableCell15.StylePriority.UseTextAlignment = false; + this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell15.Weight = 0.10101005216628688D; + // + // xrTableCell16 + // + this.xrTableCell16.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell16.Name = "xrTableCell16"; + this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell16.StylePriority.UseFont = false; + this.xrTableCell16.StylePriority.UsePadding = false; + this.xrTableCell16.StylePriority.UseTextAlignment = false; + this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell16.Weight = 0.10101005216628686D; + // + // xrTableCell17 + // + this.xrTableCell17.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell17.Name = "xrTableCell17"; + this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell17.StylePriority.UseFont = false; + this.xrTableCell17.StylePriority.UsePadding = false; + this.xrTableCell17.StylePriority.UseTextAlignment = false; + this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell17.Weight = 0.10101009738025651D; + // + // xrTableCell18 + // + this.xrTableCell18.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell18.Name = "xrTableCell18"; + this.xrTableCell18.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 0, 100F); + this.xrTableCell18.StylePriority.UseFont = false; + this.xrTableCell18.StylePriority.UsePadding = false; + this.xrTableCell18.StylePriority.UseTextAlignment = false; + this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell18.Weight = 0.026266664423860435D; + // + // xrTableCell19 + // + this.xrTableCell19.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell19.Name = "xrTableCell19"; + this.xrTableCell19.StylePriority.UseFont = false; + this.xrTableCell19.StylePriority.UseTextAlignment = false; + this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell19.Weight = 0.094696969965346947D; + // + // xrTableCell20 + // + this.xrTableCell20.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell20.Name = "xrTableCell20"; + this.xrTableCell20.StylePriority.UseFont = false; + this.xrTableCell20.StylePriority.UseTextAlignment = false; + this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell20.Weight = 0.098946099436340293D; + // + // xrTableRow5 + // + this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell21, + this.lblMoPause, + this.xrTableCell23, + this.lblMiPause, + this.xrTableCell25, + this.xrTableCell26, + this.xrTableCell27, + this.xrTableCell28, + this.xrTableCell29}); + this.xrTableRow5.Name = "xrTableRow5"; + this.xrTableRow5.Weight = 1.25D; + // + // xrTableCell21 + // + this.xrTableCell21.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell21.Name = "xrTableCell21"; + this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell21.StylePriority.UseFont = false; + this.xrTableCell21.StylePriority.UsePadding = false; + this.xrTableCell21.StylePriority.UseTextAlignment = false; + this.xrTableCell21.Text = "Pause (Min.):"; + this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell21.Weight = 0.11363627224735939D; + // + // lblMoPause + // + this.lblMoPause.Font = new System.Drawing.Font("Arial", 9.75F); + this.lblMoPause.Name = "lblMoPause"; + this.lblMoPause.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.lblMoPause.StylePriority.UseFont = false; + this.lblMoPause.StylePriority.UsePadding = false; + this.lblMoPause.StylePriority.UseTextAlignment = false; + this.lblMoPause.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.lblMoPause.Weight = 0.10101009069858014D; + // + // xrTableCell23 + // + this.xrTableCell23.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell23.Name = "xrTableCell23"; + this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell23.StylePriority.UseFont = false; + this.xrTableCell23.StylePriority.UsePadding = false; + this.xrTableCell23.StylePriority.UseTextAlignment = false; + this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell23.Weight = 0.10101007143243349D; + // + // lblMiPause + // + this.lblMiPause.Font = new System.Drawing.Font("Arial", 9.75F); + this.lblMiPause.Name = "lblMiPause"; + this.lblMiPause.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.lblMiPause.StylePriority.UseFont = false; + this.lblMiPause.StylePriority.UsePadding = false; + this.lblMiPause.StylePriority.UseTextAlignment = false; + this.lblMiPause.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.lblMiPause.Weight = 0.10101009069858014D; + // + // xrTableCell25 + // + this.xrTableCell25.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell25.Name = "xrTableCell25"; + this.xrTableCell25.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell25.StylePriority.UseFont = false; + this.xrTableCell25.StylePriority.UsePadding = false; + this.xrTableCell25.StylePriority.UseTextAlignment = false; + this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell25.Weight = 0.10101005216628686D; + // + // xrTableCell26 + // + this.xrTableCell26.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell26.Name = "xrTableCell26"; + this.xrTableCell26.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell26.StylePriority.UseFont = false; + this.xrTableCell26.StylePriority.UsePadding = false; + this.xrTableCell26.StylePriority.UseTextAlignment = false; + this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell26.Weight = 0.10101009738025651D; + // + // xrTableCell27 + // + this.xrTableCell27.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell27.Name = "xrTableCell27"; + this.xrTableCell27.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 0, 100F); + this.xrTableCell27.StylePriority.UseFont = false; + this.xrTableCell27.StylePriority.UsePadding = false; + this.xrTableCell27.StylePriority.UseTextAlignment = false; + this.xrTableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell27.Weight = 0.026266664423860435D; + // + // xrTableCell28 + // + this.xrTableCell28.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell28.Name = "xrTableCell28"; + this.xrTableCell28.StylePriority.UseFont = false; + this.xrTableCell28.StylePriority.UseTextAlignment = false; + this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell28.Weight = 0.094696969965346947D; + // + // xrTableCell29 + // + this.xrTableCell29.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell29.Name = "xrTableCell29"; + this.xrTableCell29.StylePriority.UseFont = false; + this.xrTableCell29.StylePriority.UseTextAlignment = false; + this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell29.Weight = 0.098946099436340293D; + // + // xrTableRow6 + // + this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell30, + this.lblMoEnde, + this.xrTableCell32, + this.xrTableCell33, + this.xrTableCell34, + this.xrTableCell35, + this.xrTableCell36, + this.xrTableCell37, + this.xrTableCell38}); + this.xrTableRow6.Name = "xrTableRow6"; + this.xrTableRow6.Weight = 1.25D; + // + // xrTableCell30 + // + this.xrTableCell30.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell30.Name = "xrTableCell30"; + this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell30.StylePriority.UseFont = false; + this.xrTableCell30.StylePriority.UsePadding = false; + this.xrTableCell30.StylePriority.UseTextAlignment = false; + this.xrTableCell30.Text = "Arbeitsende:"; + this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell30.Weight = 0.11363623371506613D; + // + // lblMoEnde + // + this.lblMoEnde.Font = new System.Drawing.Font("Arial", 9.75F); + this.lblMoEnde.Name = "lblMoEnde"; + this.lblMoEnde.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.lblMoEnde.StylePriority.UseFont = false; + this.lblMoEnde.StylePriority.UsePadding = false; + this.lblMoEnde.StylePriority.UseTextAlignment = false; + this.lblMoEnde.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.lblMoEnde.Weight = 0.10101009069858014D; + // + // xrTableCell32 + // + this.xrTableCell32.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell32.Name = "xrTableCell32"; + this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell32.StylePriority.UseFont = false; + this.xrTableCell32.StylePriority.UsePadding = false; + this.xrTableCell32.StylePriority.UseTextAlignment = false; + this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell32.Weight = 0.10101009069858011D; + // + // xrTableCell33 + // + this.xrTableCell33.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell33.Name = "xrTableCell33"; + this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell33.StylePriority.UseFont = false; + this.xrTableCell33.StylePriority.UsePadding = false; + this.xrTableCell33.StylePriority.UseTextAlignment = false; + this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell33.Weight = 0.10101009069858014D; + // + // xrTableCell34 + // + this.xrTableCell34.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell34.Name = "xrTableCell34"; + this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell34.StylePriority.UseFont = false; + this.xrTableCell34.StylePriority.UsePadding = false; + this.xrTableCell34.StylePriority.UseTextAlignment = false; + this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell34.Weight = 0.10101009069858014D; + // + // xrTableCell35 + // + this.xrTableCell35.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell35.Name = "xrTableCell35"; + this.xrTableCell35.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F); + this.xrTableCell35.StylePriority.UseFont = false; + this.xrTableCell35.StylePriority.UsePadding = false; + this.xrTableCell35.StylePriority.UseTextAlignment = false; + this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrTableCell35.Weight = 0.10101009738025651D; + // + // xrTableCell36 + // + this.xrTableCell36.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell36.Name = "xrTableCell36"; + this.xrTableCell36.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 0, 100F); + this.xrTableCell36.StylePriority.UseFont = false; + this.xrTableCell36.StylePriority.UsePadding = false; + this.xrTableCell36.StylePriority.UseTextAlignment = false; + this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell36.Weight = 0.0262666451577138D; + // + // xrTableCell37 + // + this.xrTableCell37.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell37.Name = "xrTableCell37"; + this.xrTableCell37.StylePriority.UseFont = false; + this.xrTableCell37.StylePriority.UseTextAlignment = false; + this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell37.Weight = 0.094696969965346947D; + // + // xrTableCell38 + // + this.xrTableCell38.Font = new System.Drawing.Font("Arial", 9.75F); + this.xrTableCell38.Name = "xrTableCell38"; + this.xrTableCell38.StylePriority.UseFont = false; + this.xrTableCell38.StylePriority.UseTextAlignment = false; + this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell38.Weight = 0.098946099436340293D; + // + // ReportFooter1 + // + this.ReportFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.lblDatum}); + this.ReportFooter1.HeightF = 34.00001F; + this.ReportFooter1.Name = "ReportFooter1"; + // + // lblDatum + // + this.lblDatum.Font = new System.Drawing.Font("Arial", 10F); + this.lblDatum.LocationFloat = new DevExpress.Utils.PointFloat(489.125F, 10.00001F); + this.lblDatum.Name = "lblDatum"; + this.lblDatum.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblDatum.SizeF = new System.Drawing.SizeF(196.9997F, 24F); + this.lblDatum.StylePriority.UseFont = false; + this.lblDatum.Text = "Stand zum:"; + // + // ReportHeader1 + // + this.ReportHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.lblZVAusscheiden, + this.xrLabel397, + this.xrLabel394, + this.lblZVBefristung, + this.xrLabel392, + this.lblZVAufnahme}); + this.ReportHeader1.HeightF = 68.79167F; + this.ReportHeader1.Name = "ReportHeader1"; + // + // lblZVAusscheiden + // + this.lblZVAusscheiden.Font = new System.Drawing.Font("Arial", 10F); + this.lblZVAusscheiden.LocationFloat = new DevExpress.Utils.PointFloat(193.6944F, 44.79167F); + this.lblZVAusscheiden.Name = "lblZVAusscheiden"; + this.lblZVAusscheiden.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblZVAusscheiden.SizeF = new System.Drawing.SizeF(165.614F, 24F); + this.lblZVAusscheiden.StylePriority.UseFont = false; + // + // xrLabel397 + // + this.xrLabel397.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel397.LocationFloat = new DevExpress.Utils.PointFloat(11.85334F, 44.79167F); + this.xrLabel397.Name = "xrLabel397"; + this.xrLabel397.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel397.SizeF = new System.Drawing.SizeF(181.8411F, 24F); + this.xrLabel397.StylePriority.UseFont = false; + this.xrLabel397.Text = "Ausscheiden aus dem ZV:"; + // + // xrLabel394 + // + this.xrLabel394.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel394.LocationFloat = new DevExpress.Utils.PointFloat(361.3982F, 20.79169F); + this.xrLabel394.Name = "xrLabel394"; + this.xrLabel394.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel394.SizeF = new System.Drawing.SizeF(182.7164F, 24F); + this.xrLabel394.StylePriority.UseFont = false; + this.xrLabel394.Text = "Aktuelle Befristung im ZV:"; + // + // lblZVBefristung + // + this.lblZVBefristung.Font = new System.Drawing.Font("Arial", 10F); + this.lblZVBefristung.LocationFloat = new DevExpress.Utils.PointFloat(544.1146F, 20.79169F); + this.lblZVBefristung.Name = "lblZVBefristung"; + this.lblZVBefristung.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblZVBefristung.SizeF = new System.Drawing.SizeF(116.5801F, 24F); + this.lblZVBefristung.StylePriority.UseFont = false; + // + // xrLabel392 + // + this.xrLabel392.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrLabel392.LocationFloat = new DevExpress.Utils.PointFloat(11.85334F, 20.79169F); + this.xrLabel392.Name = "xrLabel392"; + this.xrLabel392.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel392.SizeF = new System.Drawing.SizeF(181.8411F, 24F); + this.xrLabel392.StylePriority.UseFont = false; + this.xrLabel392.Text = "Aufnahme in den ZV:"; + // + // lblZVAufnahme + // + this.lblZVAufnahme.Font = new System.Drawing.Font("Arial", 10F); + this.lblZVAufnahme.LocationFloat = new DevExpress.Utils.PointFloat(193.6946F, 20.79169F); + this.lblZVAufnahme.Name = "lblZVAufnahme"; + this.lblZVAufnahme.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblZVAufnahme.SizeF = new System.Drawing.SizeF(165.6139F, 24F); + this.lblZVAufnahme.StylePriority.UseFont = false; + // + // bindingSource1 + // + this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.CustomerDataRO); + // + // ReportFooter + // + this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel200, + this.xrLabel195, + this.xrLabel196, + this.xrLabel197, + this.xrCheckBox63, + this.xrLabel198, + this.xrLabel199, + this.xrLabel189, + this.xrLabel190, + this.xrCheckBox62, + this.xrCheckBox61, + this.xrLabel191, + this.xrLabel192, + this.xrCheckBox60, + this.xrLabel193, + this.xrLabel194, + this.xrLabel177, + this.xrLabel178, + this.xrLabel179, + this.xrLabel180, + this.xrLabel181, + this.xrCheckBox57, + this.xrLabel182, + this.xrLabel183, + this.xrCheckBox58, + this.xrLabel184, + this.xrLabel185, + this.xrLabel186, + this.xrCheckBox59, + this.xrLabel187, + this.xrLabel188, + this.xrLabel133, + this.xrLabel134, + this.xrCheckBox56, + this.xrLabel167, + this.xrLabel168, + this.xrLabel169, + this.xrCheckBox55, + this.xrLabel170, + this.xrLabel171, + this.xrCheckBox54, + this.xrLabel172, + this.xrLabel173, + this.xrLabel174, + this.xrLabel175, + this.xrLabel176, + this.xrLabel132, + this.xrLabel165, + this.xrLabel166, + this.xrLabel162, + this.xrLabel163, + this.xrLabel164, + this.xrLabel63, + this.xrLabel154, + this.xrCheckBox51, + this.xrLabel155, + this.xrLabel156, + this.xrCheckBox52, + this.xrLabel157, + this.xrLabel158, + this.xrLabel159, + this.xrCheckBox53, + this.xrLabel160, + this.xrLabel161, + this.xrCheckBox50, + this.xrLabel137, + this.xrLabel153, + this.xrCheckBox49, + this.xrLabel135, + this.xrLabel136, + this.xrLabel149, + this.xrLabel150, + this.xrCheckBox47, + this.xrLabel151, + this.xrLabel152, + this.xrCheckBox48, + this.xrLabel145, + this.xrLabel146, + this.xrCheckBox45, + this.xrLabel147, + this.xrLabel148, + this.xrCheckBox46, + this.xrLabel142, + this.xrLabel143, + this.xrLabel144, + this.xrCheckBox44, + this.xrLabel138, + this.xrLabel139, + this.xrCheckBox43, + this.xrLabel140, + this.xrLabel141, + this.xrCheckBox42, + this.xrLabel130, + this.xrLabel131, + this.xrLabel126, + this.xrCheckBox41, + this.xrLabel127, + this.xrCheckBox40, + this.xrLabel128, + this.xrLabel129, + this.xrLabel116, + this.xrLabel117, + this.xrLabel118, + this.xrCheckBox35, + this.xrLabel119, + this.xrCheckBox36, + this.xrCheckBox37, + this.xrLabel120, + this.xrLabel121, + this.xrLabel122, + this.xrLabel123, + this.xrCheckBox39, + this.xrCheckBox38, + this.xrLabel124, + this.xrLabel125, + this.xrLabel7, + this.xrLabel14, + this.xrLabel21, + this.xrCheckBox30, + this.xrLabel25, + this.xrCheckBox31, + this.xrCheckBox32, + this.xrLabel28, + this.xrLabel32, + this.xrLabel42, + this.xrLabel43, + this.xrCheckBox34, + this.xrCheckBox33, + this.xrLabel114, + this.xrLabel115, + this.xrLabel110, + this.xrLabel111, + this.xrCheckBox28, + this.xrCheckBox29, + this.xrLabel112, + this.xrLabel113, + this.xrLabel108, + this.xrLabel107, + this.xrCheckBox27, + this.xrCheckBox26, + this.xrLabel101, + this.xrCheckBox25, + this.xrLabel102, + this.xrLabel103, + this.xrLabel104, + this.xrLabel105, + this.xrLabel106, + this.xrLabel109, + this.xrLabel92, + this.xrCheckBox23, + this.xrCheckBox22, + this.xrLabel93, + this.xrLabel94, + this.xrLabel95, + this.xrLabel96, + this.xrLabel97, + this.xrLabel98, + this.xrLabel99, + this.xrCheckBox24, + this.xrLabel100, + this.xrLabel90, + this.xrCheckBox21, + this.xrLabel91, + this.xrLabel89, + this.xrLabel77, + this.xrLabel78, + this.xrLabel79, + this.xrLabel80, + this.xrLabel81, + this.xrLabel82, + this.xrLabel83, + this.xrLabel84, + this.xrLabel85, + this.xrLabel86, + this.xrLabel87, + this.xrCheckBox19, + this.xrCheckBox20, + this.xrLabel88, + this.xrLabel75, + this.xrLabel76, + this.xrCheckBox18, + this.xrCheckBox17, + this.xrLabel71, + this.xrLabel72, + this.xrLabel73, + this.xrLabel74, + this.xrCheckBox16, + this.xrCheckBox14, + this.xrLabel67, + this.xrLabel68, + this.xrLabel69, + this.xrLabel70, + this.xrCheckBox15, + this.xrLabel60, + this.xrLabel61, + this.xrLabel62, + this.chkBoxEinpersonenhh, + this.xrLabel64, + this.xrLabel65, + this.xrLabel66, + this.chkBoxMehrpersonenhh, + this.xrCheckBox11, + this.xrLabel58, + this.xrLabel59, + this.xrLabel50, + this.xrLabel51, + this.xrCheckBox10, + this.xrLabel52, + this.xrLabel53, + this.xrLabel54, + this.xrLabel55, + this.xrLabel56, + this.xrLabel57, + this.xrLabel2, + this.xrLabel3, + this.xrLabel4, + this.xrLabel46, + this.xrLabel47, + this.xrCheckBox8, + this.xrLabel48, + this.xrLabel49, + this.xrCheckBox9, + this.xrCheckBox7, + this.xrLabel26, + this.xrLabel27, + this.xrLabel29, + this.xrLabel30, + this.xrLabel31, + this.xrLabel15, + this.xrLabel16, + this.xrLabel17, + this.xrCheckBox4, + this.xrLabel18, + this.xrLabel19, + this.xrLabel20, + this.xrLabel22, + this.xrCheckBox5, + this.xrCheckBox6, + this.xrLabel23, + this.xrLabel24, + this.xrLabel13, + this.xrLabel11, + this.xrLabel12, + this.xrLabel8, + this.xrLabel9, + this.xrLabel10, + this.xrLabel5, + this.xrLabel6, + this.xrCheckBox3, + this.xrCheckBox2, + this.xrLabel44, + this.xrLabel45, + this.xrLabel40, + this.xrLabel41, + this.xrCheckBox1, + this.xrLabel37, + this.xrLabel38, + this.xrLabel39, + this.xrLabel35, + this.xrLabel33, + this.xrLabel34, + this.xrLabel561, + this.xrLabel36}); + this.ReportFooter.HeightF = 1078.671F; + this.ReportFooter.Name = "ReportFooter"; + this.ReportFooter.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand; + this.ReportFooter.SubBands.AddRange(new DevExpress.XtraReports.UI.SubBand[] { + this.SubBand2, + this.SubBand3, + this.SubBand4}); + // + // xrLabel200 + // + this.xrLabel200.BorderColor = System.Drawing.Color.Black; + this.xrLabel200.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel200.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel200.ForeColor = System.Drawing.Color.Black; + this.xrLabel200.LocationFloat = new DevExpress.Utils.PointFloat(51.18354F, 562.9058F); + this.xrLabel200.Name = "xrLabel200"; + this.xrLabel200.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel200.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel200.StylePriority.UseBorderColor = false; + this.xrLabel200.StylePriority.UseBorders = false; + this.xrLabel200.StylePriority.UseFont = false; + this.xrLabel200.StylePriority.UseForeColor = false; + this.xrLabel200.StylePriority.UseTextAlignment = false; + this.xrLabel200.Text = "Einpersonenhaushalt"; + this.xrLabel200.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel195 + // + this.xrLabel195.BorderColor = System.Drawing.Color.Black; + this.xrLabel195.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel195.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel195.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel195.LocationFloat = new DevExpress.Utils.PointFloat(403.5492F, 1006.876F); + this.xrLabel195.Name = "xrLabel195"; + this.xrLabel195.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel195.SizeF = new System.Drawing.SizeF(270.74F, 21.86F); + this.xrLabel195.StylePriority.UseBorderColor = false; + this.xrLabel195.StylePriority.UseBorders = false; + this.xrLabel195.StylePriority.UseFont = false; + this.xrLabel195.StylePriority.UseForeColor = false; + this.xrLabel195.StylePriority.UseTextAlignment = false; + this.xrLabel195.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel196 + // + this.xrLabel196.BorderColor = System.Drawing.Color.Black; + this.xrLabel196.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel196.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel196.ForeColor = System.Drawing.Color.Black; + this.xrLabel196.LocationFloat = new DevExpress.Utils.PointFloat(403.5525F, 984.8759F); + this.xrLabel196.Name = "xrLabel196"; + this.xrLabel196.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel196.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel196.StylePriority.UseBorderColor = false; + this.xrLabel196.StylePriority.UseBorders = false; + this.xrLabel196.StylePriority.UseFont = false; + this.xrLabel196.StylePriority.UseForeColor = false; + this.xrLabel196.StylePriority.UseTextAlignment = false; + this.xrLabel196.Text = "Sonstiges:..."; + this.xrLabel196.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel197 + // + this.xrLabel197.BorderColor = System.Drawing.Color.Black; + this.xrLabel197.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel197.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel197.ForeColor = System.Drawing.Color.Red; + this.xrLabel197.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 984.8759F); + this.xrLabel197.Name = "xrLabel197"; + this.xrLabel197.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel197.SizeF = new System.Drawing.SizeF(23.31937F, 22F); + this.xrLabel197.StylePriority.UseBorderColor = false; + this.xrLabel197.StylePriority.UseBorders = false; + this.xrLabel197.StylePriority.UseFont = false; + this.xrLabel197.StylePriority.UseForeColor = false; + this.xrLabel197.StylePriority.UseTextAlignment = false; + this.xrLabel197.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox63 + // + this.xrCheckBox63.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox63.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox63.LocationFloat = new DevExpress.Utils.PointFloat(355.5593F, 984.8759F); + this.xrCheckBox63.Name = "xrCheckBox63"; + this.xrCheckBox63.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox63.StylePriority.UseBorders = false; + this.xrCheckBox63.StylePriority.UseFont = false; + this.xrCheckBox63.StylePriority.UseTextAlignment = false; + this.xrCheckBox63.Text = " "; + this.xrCheckBox63.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel198 + // + this.xrLabel198.BorderColor = System.Drawing.Color.Black; + this.xrLabel198.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel198.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel198.ForeColor = System.Drawing.Color.Red; + this.xrLabel198.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 1006.876F); + this.xrLabel198.Name = "xrLabel198"; + this.xrLabel198.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel198.SizeF = new System.Drawing.SizeF(23.31595F, 21.85999F); + this.xrLabel198.StylePriority.UseBorderColor = false; + this.xrLabel198.StylePriority.UseBorders = false; + this.xrLabel198.StylePriority.UseFont = false; + this.xrLabel198.StylePriority.UseForeColor = false; + this.xrLabel198.StylePriority.UseTextAlignment = false; + this.xrLabel198.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel199 + // + this.xrLabel199.BorderColor = System.Drawing.Color.Black; + this.xrLabel199.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel199.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel199.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel199.LocationFloat = new DevExpress.Utils.PointFloat(355.5562F, 1006.876F); + this.xrLabel199.Name = "xrLabel199"; + this.xrLabel199.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel199.SizeF = new System.Drawing.SizeF(23.98F, 21.85F); + this.xrLabel199.StylePriority.UseBorderColor = false; + this.xrLabel199.StylePriority.UseBorders = false; + this.xrLabel199.StylePriority.UseFont = false; + this.xrLabel199.StylePriority.UseForeColor = false; + this.xrLabel199.StylePriority.UseTextAlignment = false; + this.xrLabel199.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel189 + // + this.xrLabel189.BorderColor = System.Drawing.Color.Black; + this.xrLabel189.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel189.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel189.ForeColor = System.Drawing.Color.Red; + this.xrLabel189.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 962.8761F); + this.xrLabel189.Name = "xrLabel189"; + this.xrLabel189.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel189.SizeF = new System.Drawing.SizeF(23.31937F, 22F); + this.xrLabel189.StylePriority.UseBorderColor = false; + this.xrLabel189.StylePriority.UseBorders = false; + this.xrLabel189.StylePriority.UseFont = false; + this.xrLabel189.StylePriority.UseForeColor = false; + this.xrLabel189.StylePriority.UseTextAlignment = false; + this.xrLabel189.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel190 + // + this.xrLabel190.BorderColor = System.Drawing.Color.Black; + this.xrLabel190.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel190.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel190.ForeColor = System.Drawing.Color.Black; + this.xrLabel190.LocationFloat = new DevExpress.Utils.PointFloat(403.5525F, 962.8761F); + this.xrLabel190.Name = "xrLabel190"; + this.xrLabel190.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel190.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel190.StylePriority.UseBorderColor = false; + this.xrLabel190.StylePriority.UseBorders = false; + this.xrLabel190.StylePriority.UseFont = false; + this.xrLabel190.StylePriority.UseForeColor = false; + this.xrLabel190.StylePriority.UseTextAlignment = false; + this.xrLabel190.Text = "Psychotherapie"; + this.xrLabel190.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox62 + // + this.xrCheckBox62.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox62.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox62.LocationFloat = new DevExpress.Utils.PointFloat(355.5593F, 962.8761F); + this.xrCheckBox62.Name = "xrCheckBox62"; + this.xrCheckBox62.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox62.StylePriority.UseBorders = false; + this.xrCheckBox62.StylePriority.UseFont = false; + this.xrCheckBox62.StylePriority.UseTextAlignment = false; + this.xrCheckBox62.Text = " "; + this.xrCheckBox62.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox61 + // + this.xrCheckBox61.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox61.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox61.LocationFloat = new DevExpress.Utils.PointFloat(355.5662F, 940.876F); + this.xrCheckBox61.Name = "xrCheckBox61"; + this.xrCheckBox61.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox61.StylePriority.UseBorders = false; + this.xrCheckBox61.StylePriority.UseFont = false; + this.xrCheckBox61.StylePriority.UseTextAlignment = false; + this.xrCheckBox61.Text = " "; + this.xrCheckBox61.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel191 + // + this.xrLabel191.BorderColor = System.Drawing.Color.Black; + this.xrLabel191.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel191.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel191.ForeColor = System.Drawing.Color.Black; + this.xrLabel191.LocationFloat = new DevExpress.Utils.PointFloat(403.5662F, 940.876F); + this.xrLabel191.Name = "xrLabel191"; + this.xrLabel191.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel191.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel191.StylePriority.UseBorderColor = false; + this.xrLabel191.StylePriority.UseBorders = false; + this.xrLabel191.StylePriority.UseFont = false; + this.xrLabel191.StylePriority.UseForeColor = false; + this.xrLabel191.StylePriority.UseTextAlignment = false; + this.xrLabel191.Text = "Pharmakotherapie"; + this.xrLabel191.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel192 + // + this.xrLabel192.BorderColor = System.Drawing.Color.Black; + this.xrLabel192.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel192.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel192.ForeColor = System.Drawing.Color.Red; + this.xrLabel192.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 940.876F); + this.xrLabel192.Name = "xrLabel192"; + this.xrLabel192.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel192.SizeF = new System.Drawing.SizeF(23.3331F, 22F); + this.xrLabel192.StylePriority.UseBorderColor = false; + this.xrLabel192.StylePriority.UseBorders = false; + this.xrLabel192.StylePriority.UseFont = false; + this.xrLabel192.StylePriority.UseForeColor = false; + this.xrLabel192.StylePriority.UseTextAlignment = false; + this.xrLabel192.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox60 + // + this.xrCheckBox60.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox60.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox60.LocationFloat = new DevExpress.Utils.PointFloat(355.5627F, 918.876F); + this.xrCheckBox60.Name = "xrCheckBox60"; + this.xrCheckBox60.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox60.StylePriority.UseBorders = false; + this.xrCheckBox60.StylePriority.UseFont = false; + this.xrCheckBox60.StylePriority.UseTextAlignment = false; + this.xrCheckBox60.Text = " "; + this.xrCheckBox60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel193 + // + this.xrLabel193.BorderColor = System.Drawing.Color.Black; + this.xrLabel193.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel193.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel193.ForeColor = System.Drawing.Color.Black; + this.xrLabel193.LocationFloat = new DevExpress.Utils.PointFloat(403.5559F, 918.876F); + this.xrLabel193.Name = "xrLabel193"; + this.xrLabel193.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel193.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel193.StylePriority.UseBorderColor = false; + this.xrLabel193.StylePriority.UseBorders = false; + this.xrLabel193.StylePriority.UseFont = false; + this.xrLabel193.StylePriority.UseForeColor = false; + this.xrLabel193.StylePriority.UseTextAlignment = false; + this.xrLabel193.Text = "Sozialpsychiatrischer Dienst"; + this.xrLabel193.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel194 + // + this.xrLabel194.BorderColor = System.Drawing.Color.Black; + this.xrLabel194.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel194.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel194.ForeColor = System.Drawing.Color.Red; + this.xrLabel194.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 918.876F); + this.xrLabel194.Name = "xrLabel194"; + this.xrLabel194.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel194.SizeF = new System.Drawing.SizeF(23.32281F, 22F); + this.xrLabel194.StylePriority.UseBorderColor = false; + this.xrLabel194.StylePriority.UseBorders = false; + this.xrLabel194.StylePriority.UseFont = false; + this.xrLabel194.StylePriority.UseForeColor = false; + this.xrLabel194.StylePriority.UseTextAlignment = false; + this.xrLabel194.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel177 + // + this.xrLabel177.BorderColor = System.Drawing.Color.Black; + this.xrLabel177.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel177.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel177.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel177.LocationFloat = new DevExpress.Utils.PointFloat(355.7726F, 809.1314F); + this.xrLabel177.Name = "xrLabel177"; + this.xrLabel177.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel177.SizeF = new System.Drawing.SizeF(24.62936F, 21.84998F); + this.xrLabel177.StylePriority.UseBorderColor = false; + this.xrLabel177.StylePriority.UseBorders = false; + this.xrLabel177.StylePriority.UseFont = false; + this.xrLabel177.StylePriority.UseForeColor = false; + this.xrLabel177.StylePriority.UseTextAlignment = false; + this.xrLabel177.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel178 + // + this.xrLabel178.BorderColor = System.Drawing.Color.Black; + this.xrLabel178.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel178.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel178.ForeColor = System.Drawing.Color.Red; + this.xrLabel178.LocationFloat = new DevExpress.Utils.PointFloat(380.402F, 809.1314F); + this.xrLabel178.Name = "xrLabel178"; + this.xrLabel178.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel178.SizeF = new System.Drawing.SizeF(23.14713F, 21.85999F); + this.xrLabel178.StylePriority.UseBorderColor = false; + this.xrLabel178.StylePriority.UseBorders = false; + this.xrLabel178.StylePriority.UseFont = false; + this.xrLabel178.StylePriority.UseForeColor = false; + this.xrLabel178.StylePriority.UseTextAlignment = false; + this.xrLabel178.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel179 + // + this.xrLabel179.BorderColor = System.Drawing.Color.Black; + this.xrLabel179.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel179.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel179.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel179.LocationFloat = new DevExpress.Utils.PointFloat(403.5492F, 809.1314F); + this.xrLabel179.Name = "xrLabel179"; + this.xrLabel179.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel179.SizeF = new System.Drawing.SizeF(270.9564F, 21.85999F); + this.xrLabel179.StylePriority.UseBorderColor = false; + this.xrLabel179.StylePriority.UseBorders = false; + this.xrLabel179.StylePriority.UseFont = false; + this.xrLabel179.StylePriority.UseForeColor = false; + this.xrLabel179.StylePriority.UseTextAlignment = false; + this.xrLabel179.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel180 + // + this.xrLabel180.BorderColor = System.Drawing.Color.Black; + this.xrLabel180.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel180.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel180.ForeColor = System.Drawing.Color.Red; + this.xrLabel180.LocationFloat = new DevExpress.Utils.PointFloat(380.2332F, 852.8765F); + this.xrLabel180.Name = "xrLabel180"; + this.xrLabel180.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel180.SizeF = new System.Drawing.SizeF(23.3295F, 21.6438F); + this.xrLabel180.StylePriority.UseBorderColor = false; + this.xrLabel180.StylePriority.UseBorders = false; + this.xrLabel180.StylePriority.UseFont = false; + this.xrLabel180.StylePriority.UseForeColor = false; + this.xrLabel180.StylePriority.UseTextAlignment = false; + this.xrLabel180.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel181 + // + this.xrLabel181.BorderColor = System.Drawing.Color.Black; + this.xrLabel181.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel181.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel181.ForeColor = System.Drawing.Color.Black; + this.xrLabel181.LocationFloat = new DevExpress.Utils.PointFloat(403.5627F, 852.8765F); + this.xrLabel181.Name = "xrLabel181"; + this.xrLabel181.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel181.SizeF = new System.Drawing.SizeF(270.7399F, 21.6438F); + this.xrLabel181.StylePriority.UseBorderColor = false; + this.xrLabel181.StylePriority.UseBorders = false; + this.xrLabel181.StylePriority.UseFont = false; + this.xrLabel181.StylePriority.UseForeColor = false; + this.xrLabel181.StylePriority.UseTextAlignment = false; + this.xrLabel181.Text = "keine"; + this.xrLabel181.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox57 + // + this.xrCheckBox57.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox57.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox57.LocationFloat = new DevExpress.Utils.PointFloat(355.5695F, 852.8765F); + this.xrCheckBox57.Name = "xrCheckBox57"; + this.xrCheckBox57.SizeF = new System.Drawing.SizeF(23.98999F, 21.6438F); + this.xrCheckBox57.StylePriority.UseBorders = false; + this.xrCheckBox57.StylePriority.UseFont = false; + this.xrCheckBox57.StylePriority.UseTextAlignment = false; + this.xrCheckBox57.Text = " "; + this.xrCheckBox57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel182 + // + this.xrLabel182.BorderColor = System.Drawing.Color.Black; + this.xrLabel182.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel182.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel182.ForeColor = System.Drawing.Color.Red; + this.xrLabel182.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 874.8761F); + this.xrLabel182.Name = "xrLabel182"; + this.xrLabel182.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel182.SizeF = new System.Drawing.SizeF(23.33984F, 22F); + this.xrLabel182.StylePriority.UseBorderColor = false; + this.xrLabel182.StylePriority.UseBorders = false; + this.xrLabel182.StylePriority.UseFont = false; + this.xrLabel182.StylePriority.UseForeColor = false; + this.xrLabel182.StylePriority.UseTextAlignment = false; + this.xrLabel182.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel183 + // + this.xrLabel183.BorderColor = System.Drawing.Color.Black; + this.xrLabel183.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel183.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel183.ForeColor = System.Drawing.Color.Black; + this.xrLabel183.LocationFloat = new DevExpress.Utils.PointFloat(403.5731F, 874.8761F); + this.xrLabel183.Name = "xrLabel183"; + this.xrLabel183.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel183.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel183.StylePriority.UseBorderColor = false; + this.xrLabel183.StylePriority.UseBorders = false; + this.xrLabel183.StylePriority.UseFont = false; + this.xrLabel183.StylePriority.UseForeColor = false; + this.xrLabel183.StylePriority.UseTextAlignment = false; + this.xrLabel183.Text = "Ambulant Betreutes Einzelwohnen"; + this.xrLabel183.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox58 + // + this.xrCheckBox58.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox58.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox58.LocationFloat = new DevExpress.Utils.PointFloat(355.5729F, 874.8761F); + this.xrCheckBox58.Name = "xrCheckBox58"; + this.xrCheckBox58.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox58.StylePriority.UseBorders = false; + this.xrCheckBox58.StylePriority.UseFont = false; + this.xrCheckBox58.StylePriority.UseTextAlignment = false; + this.xrCheckBox58.Text = " "; + this.xrCheckBox58.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel184 + // + this.xrLabel184.BorderColor = System.Drawing.Color.Black; + this.xrLabel184.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel184.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel184.ForeColor = System.Drawing.Color.Red; + this.xrLabel184.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 830.9916F); + this.xrLabel184.Name = "xrLabel184"; + this.xrLabel184.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel184.SizeF = new System.Drawing.SizeF(23.32281F, 21.88495F); + this.xrLabel184.StylePriority.UseBorderColor = false; + this.xrLabel184.StylePriority.UseBorders = false; + this.xrLabel184.StylePriority.UseFont = false; + this.xrLabel184.StylePriority.UseForeColor = false; + this.xrLabel184.StylePriority.UseTextAlignment = false; + this.xrLabel184.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel185 + // + this.xrLabel185.BorderColor = System.Drawing.Color.Black; + this.xrLabel185.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel185.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel185.ForeColor = System.Drawing.Color.Red; + this.xrLabel185.LocationFloat = new DevExpress.Utils.PointFloat(355.5628F, 830.9916F); + this.xrLabel185.Name = "xrLabel185"; + this.xrLabel185.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel185.SizeF = new System.Drawing.SizeF(24.48105F, 21.88495F); + this.xrLabel185.StylePriority.UseBorderColor = false; + this.xrLabel185.StylePriority.UseBorders = false; + this.xrLabel185.StylePriority.UseFont = false; + this.xrLabel185.StylePriority.UseForeColor = false; + this.xrLabel185.StylePriority.UseTextAlignment = false; + this.xrLabel185.Text = "G."; + this.xrLabel185.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel186 + // + this.xrLabel186.BorderColor = System.Drawing.Color.Black; + this.xrLabel186.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel186.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel186.ForeColor = System.Drawing.Color.Red; + this.xrLabel186.LocationFloat = new DevExpress.Utils.PointFloat(403.5559F, 830.9916F); + this.xrLabel186.Name = "xrLabel186"; + this.xrLabel186.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel186.SizeF = new System.Drawing.SizeF(270.7433F, 21.88495F); + this.xrLabel186.StylePriority.UseBorderColor = false; + this.xrLabel186.StylePriority.UseBorders = false; + this.xrLabel186.StylePriority.UseFont = false; + this.xrLabel186.StylePriority.UseForeColor = false; + this.xrLabel186.StylePriority.UseTextAlignment = false; + this.xrLabel186.Text = "Psychiatrische Hilfen"; + this.xrLabel186.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox59 + // + this.xrCheckBox59.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox59.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox59.LocationFloat = new DevExpress.Utils.PointFloat(355.566F, 896.8762F); + this.xrCheckBox59.Name = "xrCheckBox59"; + this.xrCheckBox59.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox59.StylePriority.UseBorders = false; + this.xrCheckBox59.StylePriority.UseFont = false; + this.xrCheckBox59.StylePriority.UseTextAlignment = false; + this.xrCheckBox59.Text = " "; + this.xrCheckBox59.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel187 + // + this.xrLabel187.BorderColor = System.Drawing.Color.Black; + this.xrLabel187.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel187.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel187.ForeColor = System.Drawing.Color.Black; + this.xrLabel187.LocationFloat = new DevExpress.Utils.PointFloat(403.5593F, 896.8762F); + this.xrLabel187.Name = "xrLabel187"; + this.xrLabel187.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel187.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel187.StylePriority.UseBorderColor = false; + this.xrLabel187.StylePriority.UseBorders = false; + this.xrLabel187.StylePriority.UseFont = false; + this.xrLabel187.StylePriority.UseForeColor = false; + this.xrLabel187.StylePriority.UseTextAlignment = false; + this.xrLabel187.Text = "Ambulant Betreute Wohngemeinschaft"; + this.xrLabel187.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel188 + // + this.xrLabel188.BorderColor = System.Drawing.Color.Black; + this.xrLabel188.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel188.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel188.ForeColor = System.Drawing.Color.Red; + this.xrLabel188.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 896.8762F); + this.xrLabel188.Name = "xrLabel188"; + this.xrLabel188.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel188.SizeF = new System.Drawing.SizeF(23.32611F, 22F); + this.xrLabel188.StylePriority.UseBorderColor = false; + this.xrLabel188.StylePriority.UseBorders = false; + this.xrLabel188.StylePriority.UseFont = false; + this.xrLabel188.StylePriority.UseForeColor = false; + this.xrLabel188.StylePriority.UseTextAlignment = false; + this.xrLabel188.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel133 + // + this.xrLabel133.BorderColor = System.Drawing.Color.Black; + this.xrLabel133.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel133.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel133.ForeColor = System.Drawing.Color.Red; + this.xrLabel133.LocationFloat = new DevExpress.Utils.PointFloat(380.402F, 787.1316F); + this.xrLabel133.Name = "xrLabel133"; + this.xrLabel133.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel133.SizeF = new System.Drawing.SizeF(23.14706F, 22F); + this.xrLabel133.StylePriority.UseBorderColor = false; + this.xrLabel133.StylePriority.UseBorders = false; + this.xrLabel133.StylePriority.UseFont = false; + this.xrLabel133.StylePriority.UseForeColor = false; + this.xrLabel133.StylePriority.UseTextAlignment = false; + this.xrLabel133.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel134 + // + this.xrLabel134.BorderColor = System.Drawing.Color.Black; + this.xrLabel134.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel134.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel134.ForeColor = System.Drawing.Color.Black; + this.xrLabel134.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 787.1316F); + this.xrLabel134.Name = "xrLabel134"; + this.xrLabel134.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel134.SizeF = new System.Drawing.SizeF(270.9597F, 22F); + this.xrLabel134.StylePriority.UseBorderColor = false; + this.xrLabel134.StylePriority.UseBorders = false; + this.xrLabel134.StylePriority.UseFont = false; + this.xrLabel134.StylePriority.UseForeColor = false; + this.xrLabel134.StylePriority.UseTextAlignment = false; + this.xrLabel134.Text = "Liegt vor"; + this.xrLabel134.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox56 + // + this.xrCheckBox56.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox56.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox56.LocationFloat = new DevExpress.Utils.PointFloat(355.7756F, 787.1316F); + this.xrCheckBox56.Name = "xrCheckBox56"; + this.xrCheckBox56.SizeF = new System.Drawing.SizeF(24.62631F, 22F); + this.xrCheckBox56.StylePriority.UseBorders = false; + this.xrCheckBox56.StylePriority.UseFont = false; + this.xrCheckBox56.StylePriority.UseTextAlignment = false; + this.xrCheckBox56.Text = " "; + this.xrCheckBox56.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel167 + // + this.xrLabel167.BorderColor = System.Drawing.Color.Black; + this.xrLabel167.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel167.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel167.ForeColor = System.Drawing.Color.Red; + this.xrLabel167.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 701.1318F); + this.xrLabel167.Name = "xrLabel167"; + this.xrLabel167.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel167.SizeF = new System.Drawing.SizeF(270.74F, 41.99994F); + this.xrLabel167.StylePriority.UseBorderColor = false; + this.xrLabel167.StylePriority.UseBorders = false; + this.xrLabel167.StylePriority.UseFont = false; + this.xrLabel167.StylePriority.UseForeColor = false; + this.xrLabel167.StylePriority.UseTextAlignment = false; + this.xrLabel167.Text = "Gesetzliche Betreuung / Vorsorgevollmacht"; + this.xrLabel167.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel168 + // + this.xrLabel168.BorderColor = System.Drawing.Color.Black; + this.xrLabel168.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel168.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel168.ForeColor = System.Drawing.Color.Red; + this.xrLabel168.LocationFloat = new DevExpress.Utils.PointFloat(355.779F, 701.1318F); + this.xrLabel168.Name = "xrLabel168"; + this.xrLabel168.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel168.SizeF = new System.Drawing.SizeF(24.62302F, 42F); + this.xrLabel168.StylePriority.UseBorderColor = false; + this.xrLabel168.StylePriority.UseBorders = false; + this.xrLabel168.StylePriority.UseFont = false; + this.xrLabel168.StylePriority.UseForeColor = false; + this.xrLabel168.StylePriority.UseTextAlignment = false; + this.xrLabel168.Text = "F."; + this.xrLabel168.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel169 + // + this.xrLabel169.BorderColor = System.Drawing.Color.Black; + this.xrLabel169.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel169.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel169.ForeColor = System.Drawing.Color.Red; + this.xrLabel169.LocationFloat = new DevExpress.Utils.PointFloat(380.402F, 701.1318F); + this.xrLabel169.Name = "xrLabel169"; + this.xrLabel169.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel169.SizeF = new System.Drawing.SizeF(23.14694F, 42F); + this.xrLabel169.StylePriority.UseBorderColor = false; + this.xrLabel169.StylePriority.UseBorders = false; + this.xrLabel169.StylePriority.UseFont = false; + this.xrLabel169.StylePriority.UseForeColor = false; + this.xrLabel169.StylePriority.UseTextAlignment = false; + this.xrLabel169.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox55 + // + this.xrCheckBox55.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox55.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox55.LocationFloat = new DevExpress.Utils.PointFloat(355.7824F, 765.1315F); + this.xrCheckBox55.Name = "xrCheckBox55"; + this.xrCheckBox55.SizeF = new System.Drawing.SizeF(24.61957F, 22F); + this.xrCheckBox55.StylePriority.UseBorders = false; + this.xrCheckBox55.StylePriority.UseFont = false; + this.xrCheckBox55.StylePriority.UseTextAlignment = false; + this.xrCheckBox55.Text = " "; + this.xrCheckBox55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel170 + // + this.xrLabel170.BorderColor = System.Drawing.Color.Black; + this.xrLabel170.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel170.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel170.ForeColor = System.Drawing.Color.Black; + this.xrLabel170.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 765.1318F); + this.xrLabel170.Name = "xrLabel170"; + this.xrLabel170.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel170.SizeF = new System.Drawing.SizeF(270.9734F, 21.99976F); + this.xrLabel170.StylePriority.UseBorderColor = false; + this.xrLabel170.StylePriority.UseBorders = false; + this.xrLabel170.StylePriority.UseFont = false; + this.xrLabel170.StylePriority.UseForeColor = false; + this.xrLabel170.StylePriority.UseTextAlignment = false; + this.xrLabel170.Text = "Ist beantragt"; + this.xrLabel170.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel171 + // + this.xrLabel171.BorderColor = System.Drawing.Color.Black; + this.xrLabel171.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel171.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel171.ForeColor = System.Drawing.Color.Red; + this.xrLabel171.LocationFloat = new DevExpress.Utils.PointFloat(380.402F, 765.1318F); + this.xrLabel171.Name = "xrLabel171"; + this.xrLabel171.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel171.SizeF = new System.Drawing.SizeF(23.14703F, 21.99976F); + this.xrLabel171.StylePriority.UseBorderColor = false; + this.xrLabel171.StylePriority.UseBorders = false; + this.xrLabel171.StylePriority.UseFont = false; + this.xrLabel171.StylePriority.UseForeColor = false; + this.xrLabel171.StylePriority.UseTextAlignment = false; + this.xrLabel171.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox54 + // + this.xrCheckBox54.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox54.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox54.LocationFloat = new DevExpress.Utils.PointFloat(355.779F, 743.1318F); + this.xrCheckBox54.Name = "xrCheckBox54"; + this.xrCheckBox54.SizeF = new System.Drawing.SizeF(24.62299F, 21.99994F); + this.xrCheckBox54.StylePriority.UseBorders = false; + this.xrCheckBox54.StylePriority.UseFont = false; + this.xrCheckBox54.StylePriority.UseTextAlignment = false; + this.xrCheckBox54.Text = " "; + this.xrCheckBox54.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel172 + // + this.xrLabel172.BorderColor = System.Drawing.Color.Black; + this.xrLabel172.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel172.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel172.ForeColor = System.Drawing.Color.Black; + this.xrLabel172.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 743.1318F); + this.xrLabel172.Name = "xrLabel172"; + this.xrLabel172.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel172.SizeF = new System.Drawing.SizeF(270.9631F, 22F); + this.xrLabel172.StylePriority.UseBorderColor = false; + this.xrLabel172.StylePriority.UseBorders = false; + this.xrLabel172.StylePriority.UseFont = false; + this.xrLabel172.StylePriority.UseForeColor = false; + this.xrLabel172.StylePriority.UseTextAlignment = false; + this.xrLabel172.Text = "keine"; + this.xrLabel172.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel173 + // + this.xrLabel173.BorderColor = System.Drawing.Color.Black; + this.xrLabel173.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel173.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel173.ForeColor = System.Drawing.Color.Red; + this.xrLabel173.LocationFloat = new DevExpress.Utils.PointFloat(380.402F, 743.1318F); + this.xrLabel173.Name = "xrLabel173"; + this.xrLabel173.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel173.SizeF = new System.Drawing.SizeF(23.14694F, 21.99994F); + this.xrLabel173.StylePriority.UseBorderColor = false; + this.xrLabel173.StylePriority.UseBorders = false; + this.xrLabel173.StylePriority.UseFont = false; + this.xrLabel173.StylePriority.UseForeColor = false; + this.xrLabel173.StylePriority.UseTextAlignment = false; + this.xrLabel173.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel174 + // + this.xrLabel174.BorderColor = System.Drawing.Color.Black; + this.xrLabel174.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel174.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel174.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel174.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 679.2716F); + this.xrLabel174.Name = "xrLabel174"; + this.xrLabel174.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel174.SizeF = new System.Drawing.SizeF(270.74F, 21.85999F); + this.xrLabel174.StylePriority.UseBorderColor = false; + this.xrLabel174.StylePriority.UseBorders = false; + this.xrLabel174.StylePriority.UseFont = false; + this.xrLabel174.StylePriority.UseForeColor = false; + this.xrLabel174.StylePriority.UseTextAlignment = false; + this.xrLabel174.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel175 + // + this.xrLabel175.BorderColor = System.Drawing.Color.Black; + this.xrLabel175.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel175.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel175.ForeColor = System.Drawing.Color.Red; + this.xrLabel175.LocationFloat = new DevExpress.Utils.PointFloat(379.9816F, 679.2716F); + this.xrLabel175.Name = "xrLabel175"; + this.xrLabel175.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel175.SizeF = new System.Drawing.SizeF(23.56732F, 21.85999F); + this.xrLabel175.StylePriority.UseBorderColor = false; + this.xrLabel175.StylePriority.UseBorders = false; + this.xrLabel175.StylePriority.UseFont = false; + this.xrLabel175.StylePriority.UseForeColor = false; + this.xrLabel175.StylePriority.UseTextAlignment = false; + this.xrLabel175.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel176 + // + this.xrLabel176.BorderColor = System.Drawing.Color.Black; + this.xrLabel176.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel176.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel176.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel176.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 679.2716F); + this.xrLabel176.Name = "xrLabel176"; + this.xrLabel176.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel176.SizeF = new System.Drawing.SizeF(24.41278F, 21.84998F); + this.xrLabel176.StylePriority.UseBorderColor = false; + this.xrLabel176.StylePriority.UseBorders = false; + this.xrLabel176.StylePriority.UseFont = false; + this.xrLabel176.StylePriority.UseForeColor = false; + this.xrLabel176.StylePriority.UseTextAlignment = false; + this.xrLabel176.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel132 + // + this.xrLabel132.BorderColor = System.Drawing.Color.Black; + this.xrLabel132.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel132.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel132.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel132.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 349.7821F); + this.xrLabel132.Name = "xrLabel132"; + this.xrLabel132.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel132.SizeF = new System.Drawing.SizeF(23.98001F, 21.85001F); + this.xrLabel132.StylePriority.UseBorderColor = false; + this.xrLabel132.StylePriority.UseBorders = false; + this.xrLabel132.StylePriority.UseFont = false; + this.xrLabel132.StylePriority.UseForeColor = false; + this.xrLabel132.StylePriority.UseTextAlignment = false; + this.xrLabel132.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel165 + // + this.xrLabel165.BorderColor = System.Drawing.Color.Black; + this.xrLabel165.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel165.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel165.ForeColor = System.Drawing.Color.Red; + this.xrLabel165.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 349.7821F); + this.xrLabel165.Name = "xrLabel165"; + this.xrLabel165.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel165.SizeF = new System.Drawing.SizeF(23.31595F, 21.85999F); + this.xrLabel165.StylePriority.UseBorderColor = false; + this.xrLabel165.StylePriority.UseBorders = false; + this.xrLabel165.StylePriority.UseFont = false; + this.xrLabel165.StylePriority.UseForeColor = false; + this.xrLabel165.StylePriority.UseTextAlignment = false; + this.xrLabel165.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel166 + // + this.xrLabel166.BorderColor = System.Drawing.Color.Black; + this.xrLabel166.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel166.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel166.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel166.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 349.7821F); + this.xrLabel166.Name = "xrLabel166"; + this.xrLabel166.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel166.SizeF = new System.Drawing.SizeF(270.7401F, 21.85999F); + this.xrLabel166.StylePriority.UseBorderColor = false; + this.xrLabel166.StylePriority.UseBorders = false; + this.xrLabel166.StylePriority.UseFont = false; + this.xrLabel166.StylePriority.UseForeColor = false; + this.xrLabel166.StylePriority.UseTextAlignment = false; + this.xrLabel166.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel162 + // + this.xrLabel162.BorderColor = System.Drawing.Color.Black; + this.xrLabel162.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel162.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel162.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel162.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 569.5267F); + this.xrLabel162.Name = "xrLabel162"; + this.xrLabel162.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel162.SizeF = new System.Drawing.SizeF(24.84589F, 21.84998F); + this.xrLabel162.StylePriority.UseBorderColor = false; + this.xrLabel162.StylePriority.UseBorders = false; + this.xrLabel162.StylePriority.UseFont = false; + this.xrLabel162.StylePriority.UseForeColor = false; + this.xrLabel162.StylePriority.UseTextAlignment = false; + this.xrLabel162.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel163 + // + this.xrLabel163.BorderColor = System.Drawing.Color.Black; + this.xrLabel163.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel163.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel163.ForeColor = System.Drawing.Color.Red; + this.xrLabel163.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 569.5268F); + this.xrLabel163.Name = "xrLabel163"; + this.xrLabel163.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel163.SizeF = new System.Drawing.SizeF(23.31586F, 21.85999F); + this.xrLabel163.StylePriority.UseBorderColor = false; + this.xrLabel163.StylePriority.UseBorders = false; + this.xrLabel163.StylePriority.UseFont = false; + this.xrLabel163.StylePriority.UseForeColor = false; + this.xrLabel163.StylePriority.UseTextAlignment = false; + this.xrLabel163.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel164 + // + this.xrLabel164.BorderColor = System.Drawing.Color.Black; + this.xrLabel164.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel164.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel164.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel164.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 569.5268F); + this.xrLabel164.Name = "xrLabel164"; + this.xrLabel164.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel164.SizeF = new System.Drawing.SizeF(270.7401F, 21.85999F); + this.xrLabel164.StylePriority.UseBorderColor = false; + this.xrLabel164.StylePriority.UseBorders = false; + this.xrLabel164.StylePriority.UseFont = false; + this.xrLabel164.StylePriority.UseForeColor = false; + this.xrLabel164.StylePriority.UseTextAlignment = false; + this.xrLabel164.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel63 + // + this.xrLabel63.BorderColor = System.Drawing.Color.Black; + this.xrLabel63.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel63.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel63.ForeColor = System.Drawing.Color.Red; + this.xrLabel63.LocationFloat = new DevExpress.Utils.PointFloat(379.9884F, 613.2717F); + this.xrLabel63.Name = "xrLabel63"; + this.xrLabel63.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel63.SizeF = new System.Drawing.SizeF(23.56052F, 22F); + this.xrLabel63.StylePriority.UseBorderColor = false; + this.xrLabel63.StylePriority.UseBorders = false; + this.xrLabel63.StylePriority.UseFont = false; + this.xrLabel63.StylePriority.UseForeColor = false; + this.xrLabel63.StylePriority.UseTextAlignment = false; + this.xrLabel63.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel154 + // + this.xrLabel154.BorderColor = System.Drawing.Color.Black; + this.xrLabel154.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel154.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel154.ForeColor = System.Drawing.Color.Black; + this.xrLabel154.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 613.2717F); + this.xrLabel154.Name = "xrLabel154"; + this.xrLabel154.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel154.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel154.StylePriority.UseBorderColor = false; + this.xrLabel154.StylePriority.UseBorders = false; + this.xrLabel154.StylePriority.UseFont = false; + this.xrLabel154.StylePriority.UseForeColor = false; + this.xrLabel154.StylePriority.UseTextAlignment = false; + this.xrLabel154.Text = "keiner\t"; + this.xrLabel154.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox51 + // + this.xrCheckBox51.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox51.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox51.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 613.2717F); + this.xrCheckBox51.Name = "xrCheckBox51"; + this.xrCheckBox51.SizeF = new System.Drawing.SizeF(24.42926F, 22F); + this.xrCheckBox51.StylePriority.UseBorders = false; + this.xrCheckBox51.StylePriority.UseFont = false; + this.xrCheckBox51.StylePriority.UseTextAlignment = false; + this.xrCheckBox51.Text = " "; + this.xrCheckBox51.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel155 + // + this.xrLabel155.BorderColor = System.Drawing.Color.Black; + this.xrLabel155.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel155.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel155.ForeColor = System.Drawing.Color.Red; + this.xrLabel155.LocationFloat = new DevExpress.Utils.PointFloat(379.9987F, 635.2715F); + this.xrLabel155.Name = "xrLabel155"; + this.xrLabel155.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel155.SizeF = new System.Drawing.SizeF(23.55026F, 22F); + this.xrLabel155.StylePriority.UseBorderColor = false; + this.xrLabel155.StylePriority.UseBorders = false; + this.xrLabel155.StylePriority.UseFont = false; + this.xrLabel155.StylePriority.UseForeColor = false; + this.xrLabel155.StylePriority.UseTextAlignment = false; + this.xrLabel155.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel156 + // + this.xrLabel156.BorderColor = System.Drawing.Color.Black; + this.xrLabel156.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel156.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel156.ForeColor = System.Drawing.Color.Black; + this.xrLabel156.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 635.2715F); + this.xrLabel156.Name = "xrLabel156"; + this.xrLabel156.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel156.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel156.StylePriority.UseBorderColor = false; + this.xrLabel156.StylePriority.UseBorders = false; + this.xrLabel156.StylePriority.UseFont = false; + this.xrLabel156.StylePriority.UseForeColor = false; + this.xrLabel156.StylePriority.UseTextAlignment = false; + this.xrLabel156.Text = "Ist beantragt"; + this.xrLabel156.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox52 + // + this.xrCheckBox52.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox52.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox52.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 635.2715F); + this.xrCheckBox52.Name = "xrCheckBox52"; + this.xrCheckBox52.SizeF = new System.Drawing.SizeF(24.43262F, 22F); + this.xrCheckBox52.StylePriority.UseBorders = false; + this.xrCheckBox52.StylePriority.UseFont = false; + this.xrCheckBox52.StylePriority.UseTextAlignment = false; + this.xrCheckBox52.Text = " "; + this.xrCheckBox52.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel157 + // + this.xrLabel157.BorderColor = System.Drawing.Color.Black; + this.xrLabel157.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel157.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel157.ForeColor = System.Drawing.Color.Red; + this.xrLabel157.LocationFloat = new DevExpress.Utils.PointFloat(379.9817F, 591.387F); + this.xrLabel157.Name = "xrLabel157"; + this.xrLabel157.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel157.SizeF = new System.Drawing.SizeF(23.56726F, 21.88489F); + this.xrLabel157.StylePriority.UseBorderColor = false; + this.xrLabel157.StylePriority.UseBorders = false; + this.xrLabel157.StylePriority.UseFont = false; + this.xrLabel157.StylePriority.UseForeColor = false; + this.xrLabel157.StylePriority.UseTextAlignment = false; + this.xrLabel157.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel158 + // + this.xrLabel158.BorderColor = System.Drawing.Color.Black; + this.xrLabel158.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel158.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel158.ForeColor = System.Drawing.Color.Red; + this.xrLabel158.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 591.387F); + this.xrLabel158.Name = "xrLabel158"; + this.xrLabel158.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel158.SizeF = new System.Drawing.SizeF(24.42563F, 21.88489F); + this.xrLabel158.StylePriority.UseBorderColor = false; + this.xrLabel158.StylePriority.UseBorders = false; + this.xrLabel158.StylePriority.UseFont = false; + this.xrLabel158.StylePriority.UseForeColor = false; + this.xrLabel158.StylePriority.UseTextAlignment = false; + this.xrLabel158.Text = "E."; + this.xrLabel158.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel159 + // + this.xrLabel159.BorderColor = System.Drawing.Color.Black; + this.xrLabel159.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel159.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel159.ForeColor = System.Drawing.Color.Red; + this.xrLabel159.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 591.387F); + this.xrLabel159.Name = "xrLabel159"; + this.xrLabel159.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel159.SizeF = new System.Drawing.SizeF(270.7401F, 21.88489F); + this.xrLabel159.StylePriority.UseBorderColor = false; + this.xrLabel159.StylePriority.UseBorders = false; + this.xrLabel159.StylePriority.UseFont = false; + this.xrLabel159.StylePriority.UseForeColor = false; + this.xrLabel159.StylePriority.UseTextAlignment = false; + this.xrLabel159.Text = "Schwerbehindertenausweis"; + this.xrLabel159.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox53 + // + this.xrCheckBox53.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox53.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox53.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 657.2715F); + this.xrCheckBox53.Name = "xrCheckBox53"; + this.xrCheckBox53.SizeF = new System.Drawing.SizeF(24.42581F, 22F); + this.xrCheckBox53.StylePriority.UseBorders = false; + this.xrCheckBox53.StylePriority.UseFont = false; + this.xrCheckBox53.StylePriority.UseTextAlignment = false; + this.xrCheckBox53.Text = " "; + this.xrCheckBox53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel160 + // + this.xrLabel160.BorderColor = System.Drawing.Color.Black; + this.xrLabel160.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel160.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel160.ForeColor = System.Drawing.Color.Black; + this.xrLabel160.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 657.2715F); + this.xrLabel160.Name = "xrLabel160"; + this.xrLabel160.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel160.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel160.StylePriority.UseBorderColor = false; + this.xrLabel160.StylePriority.UseBorders = false; + this.xrLabel160.StylePriority.UseFont = false; + this.xrLabel160.StylePriority.UseForeColor = false; + this.xrLabel160.StylePriority.UseTextAlignment = false; + this.xrLabel160.Text = "Liegt vor"; + this.xrLabel160.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel161 + // + this.xrLabel161.BorderColor = System.Drawing.Color.Black; + this.xrLabel161.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel161.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel161.ForeColor = System.Drawing.Color.Red; + this.xrLabel161.LocationFloat = new DevExpress.Utils.PointFloat(379.985F, 657.2715F); + this.xrLabel161.Name = "xrLabel161"; + this.xrLabel161.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel161.SizeF = new System.Drawing.SizeF(23.56381F, 22F); + this.xrLabel161.StylePriority.UseBorderColor = false; + this.xrLabel161.StylePriority.UseBorders = false; + this.xrLabel161.StylePriority.UseFont = false; + this.xrLabel161.StylePriority.UseForeColor = false; + this.xrLabel161.StylePriority.UseTextAlignment = false; + this.xrLabel161.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox50 + // + this.xrCheckBox50.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox50.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox50.LocationFloat = new DevExpress.Utils.PointFloat(355.5562F, 547.5269F); + this.xrCheckBox50.Name = "xrCheckBox50"; + this.xrCheckBox50.SizeF = new System.Drawing.SizeF(24.45013F, 22F); + this.xrCheckBox50.StylePriority.UseBorders = false; + this.xrCheckBox50.StylePriority.UseFont = false; + this.xrCheckBox50.StylePriority.UseTextAlignment = false; + this.xrCheckBox50.Text = " "; + this.xrCheckBox50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel137 + // + this.xrLabel137.BorderColor = System.Drawing.Color.Black; + this.xrLabel137.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel137.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel137.ForeColor = System.Drawing.Color.Black; + this.xrLabel137.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 547.527F); + this.xrLabel137.Name = "xrLabel137"; + this.xrLabel137.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel137.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel137.StylePriority.UseBorderColor = false; + this.xrLabel137.StylePriority.UseBorders = false; + this.xrLabel137.StylePriority.UseFont = false; + this.xrLabel137.StylePriority.UseForeColor = false; + this.xrLabel137.StylePriority.UseTextAlignment = false; + this.xrLabel137.Text = "Sonstiges:"; + this.xrLabel137.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel153 + // + this.xrLabel153.BorderColor = System.Drawing.Color.Black; + this.xrLabel153.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel153.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel153.ForeColor = System.Drawing.Color.Red; + this.xrLabel153.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 547.527F); + this.xrLabel153.Name = "xrLabel153"; + this.xrLabel153.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel153.SizeF = new System.Drawing.SizeF(23.31586F, 22F); + this.xrLabel153.StylePriority.UseBorderColor = false; + this.xrLabel153.StylePriority.UseBorders = false; + this.xrLabel153.StylePriority.UseFont = false; + this.xrLabel153.StylePriority.UseForeColor = false; + this.xrLabel153.StylePriority.UseTextAlignment = false; + this.xrLabel153.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox49 + // + this.xrCheckBox49.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox49.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox49.LocationFloat = new DevExpress.Utils.PointFloat(355.5562F, 525.5269F); + this.xrCheckBox49.Name = "xrCheckBox49"; + this.xrCheckBox49.SizeF = new System.Drawing.SizeF(23.86905F, 22F); + this.xrCheckBox49.StylePriority.UseBorders = false; + this.xrCheckBox49.StylePriority.UseFont = false; + this.xrCheckBox49.StylePriority.UseTextAlignment = false; + this.xrCheckBox49.Text = " "; + this.xrCheckBox49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel135 + // + this.xrLabel135.BorderColor = System.Drawing.Color.Black; + this.xrLabel135.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel135.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel135.ForeColor = System.Drawing.Color.Black; + this.xrLabel135.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 525.5269F); + this.xrLabel135.Name = "xrLabel135"; + this.xrLabel135.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel135.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel135.StylePriority.UseBorderColor = false; + this.xrLabel135.StylePriority.UseBorders = false; + this.xrLabel135.StylePriority.UseFont = false; + this.xrLabel135.StylePriority.UseForeColor = false; + this.xrLabel135.StylePriority.UseTextAlignment = false; + this.xrLabel135.Text = "Angehörigenunterhalt"; + this.xrLabel135.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel136 + // + this.xrLabel136.BorderColor = System.Drawing.Color.Black; + this.xrLabel136.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel136.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel136.ForeColor = System.Drawing.Color.Red; + this.xrLabel136.LocationFloat = new DevExpress.Utils.PointFloat(380.4019F, 525.5269F); + this.xrLabel136.Name = "xrLabel136"; + this.xrLabel136.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel136.SizeF = new System.Drawing.SizeF(23.14709F, 22F); + this.xrLabel136.StylePriority.UseBorderColor = false; + this.xrLabel136.StylePriority.UseBorders = false; + this.xrLabel136.StylePriority.UseFont = false; + this.xrLabel136.StylePriority.UseForeColor = false; + this.xrLabel136.StylePriority.UseTextAlignment = false; + this.xrLabel136.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel149 + // + this.xrLabel149.BorderColor = System.Drawing.Color.Black; + this.xrLabel149.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel149.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel149.ForeColor = System.Drawing.Color.Red; + this.xrLabel149.LocationFloat = new DevExpress.Utils.PointFloat(380.0267F, 481.5268F); + this.xrLabel149.Name = "xrLabel149"; + this.xrLabel149.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel149.SizeF = new System.Drawing.SizeF(23.52225F, 22F); + this.xrLabel149.StylePriority.UseBorderColor = false; + this.xrLabel149.StylePriority.UseBorders = false; + this.xrLabel149.StylePriority.UseFont = false; + this.xrLabel149.StylePriority.UseForeColor = false; + this.xrLabel149.StylePriority.UseTextAlignment = false; + this.xrLabel149.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel150 + // + this.xrLabel150.BorderColor = System.Drawing.Color.Black; + this.xrLabel150.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel150.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel150.ForeColor = System.Drawing.Color.Black; + this.xrLabel150.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 481.5268F); + this.xrLabel150.Name = "xrLabel150"; + this.xrLabel150.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel150.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel150.StylePriority.UseBorderColor = false; + this.xrLabel150.StylePriority.UseBorders = false; + this.xrLabel150.StylePriority.UseFont = false; + this.xrLabel150.StylePriority.UseForeColor = false; + this.xrLabel150.StylePriority.UseTextAlignment = false; + this.xrLabel150.Text = "Hilfe zum Lebensunterhalt (HLU)"; + this.xrLabel150.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox47 + // + this.xrCheckBox47.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox47.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox47.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 481.5268F); + this.xrCheckBox47.Name = "xrCheckBox47"; + this.xrCheckBox47.SizeF = new System.Drawing.SizeF(24.46741F, 22F); + this.xrCheckBox47.StylePriority.UseBorders = false; + this.xrCheckBox47.StylePriority.UseFont = false; + this.xrCheckBox47.StylePriority.UseTextAlignment = false; + this.xrCheckBox47.Text = " "; + this.xrCheckBox47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel151 + // + this.xrLabel151.BorderColor = System.Drawing.Color.Black; + this.xrLabel151.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel151.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel151.ForeColor = System.Drawing.Color.Red; + this.xrLabel151.LocationFloat = new DevExpress.Utils.PointFloat(380.0369F, 503.5269F); + this.xrLabel151.Name = "xrLabel151"; + this.xrLabel151.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel151.SizeF = new System.Drawing.SizeF(23.51205F, 22F); + this.xrLabel151.StylePriority.UseBorderColor = false; + this.xrLabel151.StylePriority.UseBorders = false; + this.xrLabel151.StylePriority.UseFont = false; + this.xrLabel151.StylePriority.UseForeColor = false; + this.xrLabel151.StylePriority.UseTextAlignment = false; + this.xrLabel151.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel152 + // + this.xrLabel152.BorderColor = System.Drawing.Color.Black; + this.xrLabel152.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel152.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel152.ForeColor = System.Drawing.Color.Black; + this.xrLabel152.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 503.5269F); + this.xrLabel152.Name = "xrLabel152"; + this.xrLabel152.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel152.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel152.StylePriority.UseBorderColor = false; + this.xrLabel152.StylePriority.UseBorders = false; + this.xrLabel152.StylePriority.UseFont = false; + this.xrLabel152.StylePriority.UseForeColor = false; + this.xrLabel152.StylePriority.UseTextAlignment = false; + this.xrLabel152.Text = "Vermögen"; + this.xrLabel152.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox48 + // + this.xrCheckBox48.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox48.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox48.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 503.5269F); + this.xrCheckBox48.Name = "xrCheckBox48"; + this.xrCheckBox48.SizeF = new System.Drawing.SizeF(24.47092F, 22F); + this.xrCheckBox48.StylePriority.UseBorders = false; + this.xrCheckBox48.StylePriority.UseFont = false; + this.xrCheckBox48.StylePriority.UseTextAlignment = false; + this.xrCheckBox48.Text = " "; + this.xrCheckBox48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel145 + // + this.xrLabel145.BorderColor = System.Drawing.Color.Black; + this.xrLabel145.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel145.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel145.ForeColor = System.Drawing.Color.Red; + this.xrLabel145.LocationFloat = new DevExpress.Utils.PointFloat(380.0267F, 437.5269F); + this.xrLabel145.Name = "xrLabel145"; + this.xrLabel145.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel145.SizeF = new System.Drawing.SizeF(23.52225F, 22F); + this.xrLabel145.StylePriority.UseBorderColor = false; + this.xrLabel145.StylePriority.UseBorders = false; + this.xrLabel145.StylePriority.UseFont = false; + this.xrLabel145.StylePriority.UseForeColor = false; + this.xrLabel145.StylePriority.UseTextAlignment = false; + this.xrLabel145.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel146 + // + this.xrLabel146.BorderColor = System.Drawing.Color.Black; + this.xrLabel146.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel146.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel146.ForeColor = System.Drawing.Color.Black; + this.xrLabel146.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 437.5269F); + this.xrLabel146.Name = "xrLabel146"; + this.xrLabel146.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel146.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel146.StylePriority.UseBorderColor = false; + this.xrLabel146.StylePriority.UseBorders = false; + this.xrLabel146.StylePriority.UseFont = false; + this.xrLabel146.StylePriority.UseForeColor = false; + this.xrLabel146.StylePriority.UseTextAlignment = false; + this.xrLabel146.Text = "Voll-EM-Rente"; + this.xrLabel146.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox45 + // + this.xrCheckBox45.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox45.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox45.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 437.5269F); + this.xrCheckBox45.Name = "xrCheckBox45"; + this.xrCheckBox45.SizeF = new System.Drawing.SizeF(24.46741F, 22F); + this.xrCheckBox45.StylePriority.UseBorders = false; + this.xrCheckBox45.StylePriority.UseFont = false; + this.xrCheckBox45.StylePriority.UseTextAlignment = false; + this.xrCheckBox45.Text = " "; + this.xrCheckBox45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel147 + // + this.xrLabel147.BorderColor = System.Drawing.Color.Black; + this.xrLabel147.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel147.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel147.ForeColor = System.Drawing.Color.Red; + this.xrLabel147.LocationFloat = new DevExpress.Utils.PointFloat(380.0369F, 459.5267F); + this.xrLabel147.Name = "xrLabel147"; + this.xrLabel147.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel147.SizeF = new System.Drawing.SizeF(23.51205F, 21.99997F); + this.xrLabel147.StylePriority.UseBorderColor = false; + this.xrLabel147.StylePriority.UseBorders = false; + this.xrLabel147.StylePriority.UseFont = false; + this.xrLabel147.StylePriority.UseForeColor = false; + this.xrLabel147.StylePriority.UseTextAlignment = false; + this.xrLabel147.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel148 + // + this.xrLabel148.BorderColor = System.Drawing.Color.Black; + this.xrLabel148.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel148.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel148.ForeColor = System.Drawing.Color.Black; + this.xrLabel148.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 459.5267F); + this.xrLabel148.Name = "xrLabel148"; + this.xrLabel148.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel148.SizeF = new System.Drawing.SizeF(270.7401F, 21.99997F); + this.xrLabel148.StylePriority.UseBorderColor = false; + this.xrLabel148.StylePriority.UseBorders = false; + this.xrLabel148.StylePriority.UseFont = false; + this.xrLabel148.StylePriority.UseForeColor = false; + this.xrLabel148.StylePriority.UseTextAlignment = false; + this.xrLabel148.Text = "Grundsicherung (Gsi)"; + this.xrLabel148.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox46 + // + this.xrCheckBox46.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox46.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox46.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 459.5267F); + this.xrCheckBox46.Name = "xrCheckBox46"; + this.xrCheckBox46.SizeF = new System.Drawing.SizeF(24.47092F, 21.99997F); + this.xrCheckBox46.StylePriority.UseBorders = false; + this.xrCheckBox46.StylePriority.UseFont = false; + this.xrCheckBox46.StylePriority.UseTextAlignment = false; + this.xrCheckBox46.Text = " "; + this.xrCheckBox46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel142 + // + this.xrLabel142.BorderColor = System.Drawing.Color.Black; + this.xrLabel142.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel142.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel142.ForeColor = System.Drawing.Color.Red; + this.xrLabel142.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 371.642F); + this.xrLabel142.Name = "xrLabel142"; + this.xrLabel142.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel142.SizeF = new System.Drawing.SizeF(270.7401F, 21.88495F); + this.xrLabel142.StylePriority.UseBorderColor = false; + this.xrLabel142.StylePriority.UseBorders = false; + this.xrLabel142.StylePriority.UseFont = false; + this.xrLabel142.StylePriority.UseForeColor = false; + this.xrLabel142.StylePriority.UseTextAlignment = false; + this.xrLabel142.Text = "Lebensunterhalt"; + this.xrLabel142.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel143 + // + this.xrLabel143.BorderColor = System.Drawing.Color.Black; + this.xrLabel143.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel143.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel143.ForeColor = System.Drawing.Color.Red; + this.xrLabel143.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 371.642F); + this.xrLabel143.Name = "xrLabel143"; + this.xrLabel143.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel143.SizeF = new System.Drawing.SizeF(24.46722F, 21.88495F); + this.xrLabel143.StylePriority.UseBorderColor = false; + this.xrLabel143.StylePriority.UseBorders = false; + this.xrLabel143.StylePriority.UseFont = false; + this.xrLabel143.StylePriority.UseForeColor = false; + this.xrLabel143.StylePriority.UseTextAlignment = false; + this.xrLabel143.Text = "D."; + this.xrLabel143.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel144 + // + this.xrLabel144.BorderColor = System.Drawing.Color.Black; + this.xrLabel144.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel144.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel144.ForeColor = System.Drawing.Color.Red; + this.xrLabel144.LocationFloat = new DevExpress.Utils.PointFloat(380.0233F, 371.642F); + this.xrLabel144.Name = "xrLabel144"; + this.xrLabel144.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel144.SizeF = new System.Drawing.SizeF(23.52567F, 21.88495F); + this.xrLabel144.StylePriority.UseBorderColor = false; + this.xrLabel144.StylePriority.UseBorders = false; + this.xrLabel144.StylePriority.UseFont = false; + this.xrLabel144.StylePriority.UseForeColor = false; + this.xrLabel144.StylePriority.UseTextAlignment = false; + this.xrLabel144.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox44 + // + this.xrCheckBox44.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox44.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox44.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 415.5268F); + this.xrCheckBox44.Name = "xrCheckBox44"; + this.xrCheckBox44.SizeF = new System.Drawing.SizeF(24.47433F, 22F); + this.xrCheckBox44.StylePriority.UseBorders = false; + this.xrCheckBox44.StylePriority.UseFont = false; + this.xrCheckBox44.StylePriority.UseTextAlignment = false; + this.xrCheckBox44.Text = " "; + this.xrCheckBox44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel138 + // + this.xrLabel138.BorderColor = System.Drawing.Color.Black; + this.xrLabel138.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel138.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel138.ForeColor = System.Drawing.Color.Black; + this.xrLabel138.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 415.5268F); + this.xrLabel138.Name = "xrLabel138"; + this.xrLabel138.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel138.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel138.StylePriority.UseBorderColor = false; + this.xrLabel138.StylePriority.UseBorders = false; + this.xrLabel138.StylePriority.UseFont = false; + this.xrLabel138.StylePriority.UseForeColor = false; + this.xrLabel138.StylePriority.UseTextAlignment = false; + this.xrLabel138.Text = "Teil-EM-Rente"; + this.xrLabel138.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel139 + // + this.xrLabel139.BorderColor = System.Drawing.Color.Black; + this.xrLabel139.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel139.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel139.ForeColor = System.Drawing.Color.Red; + this.xrLabel139.LocationFloat = new DevExpress.Utils.PointFloat(380.0403F, 415.5268F); + this.xrLabel139.Name = "xrLabel139"; + this.xrLabel139.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel139.SizeF = new System.Drawing.SizeF(23.50864F, 22F); + this.xrLabel139.StylePriority.UseBorderColor = false; + this.xrLabel139.StylePriority.UseBorders = false; + this.xrLabel139.StylePriority.UseFont = false; + this.xrLabel139.StylePriority.UseForeColor = false; + this.xrLabel139.StylePriority.UseTextAlignment = false; + this.xrLabel139.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox43 + // + this.xrCheckBox43.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox43.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox43.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 393.527F); + this.xrCheckBox43.Name = "xrCheckBox43"; + this.xrCheckBox43.SizeF = new System.Drawing.SizeF(24.47083F, 22F); + this.xrCheckBox43.StylePriority.UseBorders = false; + this.xrCheckBox43.StylePriority.UseFont = false; + this.xrCheckBox43.StylePriority.UseTextAlignment = false; + this.xrCheckBox43.Text = " "; + this.xrCheckBox43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel140 + // + this.xrLabel140.BorderColor = System.Drawing.Color.Black; + this.xrLabel140.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel140.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel140.ForeColor = System.Drawing.Color.Black; + this.xrLabel140.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 393.527F); + this.xrLabel140.Name = "xrLabel140"; + this.xrLabel140.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel140.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel140.StylePriority.UseBorderColor = false; + this.xrLabel140.StylePriority.UseBorders = false; + this.xrLabel140.StylePriority.UseFont = false; + this.xrLabel140.StylePriority.UseForeColor = false; + this.xrLabel140.StylePriority.UseTextAlignment = false; + this.xrLabel140.Text = "BU-Rente"; + this.xrLabel140.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel141 + // + this.xrLabel141.BorderColor = System.Drawing.Color.Black; + this.xrLabel141.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel141.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel141.ForeColor = System.Drawing.Color.Red; + this.xrLabel141.LocationFloat = new DevExpress.Utils.PointFloat(380.0302F, 393.527F); + this.xrLabel141.Name = "xrLabel141"; + this.xrLabel141.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel141.SizeF = new System.Drawing.SizeF(23.51886F, 22F); + this.xrLabel141.StylePriority.UseBorderColor = false; + this.xrLabel141.StylePriority.UseBorders = false; + this.xrLabel141.StylePriority.UseFont = false; + this.xrLabel141.StylePriority.UseForeColor = false; + this.xrLabel141.StylePriority.UseTextAlignment = false; + this.xrLabel141.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox42 + // + this.xrCheckBox42.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox42.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox42.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 327.7821F); + this.xrCheckBox42.Name = "xrCheckBox42"; + this.xrCheckBox42.SizeF = new System.Drawing.SizeF(24.48776F, 22F); + this.xrCheckBox42.StylePriority.UseBorders = false; + this.xrCheckBox42.StylePriority.UseFont = false; + this.xrCheckBox42.StylePriority.UseTextAlignment = false; + this.xrCheckBox42.Text = " "; + this.xrCheckBox42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel130 + // + this.xrLabel130.BorderColor = System.Drawing.Color.Black; + this.xrLabel130.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel130.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel130.ForeColor = System.Drawing.Color.Black; + this.xrLabel130.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 327.7821F); + this.xrLabel130.Name = "xrLabel130"; + this.xrLabel130.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel130.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel130.StylePriority.UseBorderColor = false; + this.xrLabel130.StylePriority.UseBorders = false; + this.xrLabel130.StylePriority.UseFont = false; + this.xrLabel130.StylePriority.UseForeColor = false; + this.xrLabel130.StylePriority.UseTextAlignment = false; + this.xrLabel130.Text = "keine Tätigkeit"; + this.xrLabel130.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel131 + // + this.xrLabel131.BorderColor = System.Drawing.Color.Black; + this.xrLabel131.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel131.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel131.ForeColor = System.Drawing.Color.Red; + this.xrLabel131.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 327.7821F); + this.xrLabel131.Name = "xrLabel131"; + this.xrLabel131.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel131.SizeF = new System.Drawing.SizeF(23.31586F, 22F); + this.xrLabel131.StylePriority.UseBorderColor = false; + this.xrLabel131.StylePriority.UseBorders = false; + this.xrLabel131.StylePriority.UseFont = false; + this.xrLabel131.StylePriority.UseForeColor = false; + this.xrLabel131.StylePriority.UseTextAlignment = false; + this.xrLabel131.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel126 + // + this.xrLabel126.BorderColor = System.Drawing.Color.Black; + this.xrLabel126.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel126.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel126.ForeColor = System.Drawing.Color.Red; + this.xrLabel126.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 309.7821F); + this.xrLabel126.Name = "xrLabel126"; + this.xrLabel126.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel126.SizeF = new System.Drawing.SizeF(24.48813F, 18F); + this.xrLabel126.StylePriority.UseBorderColor = false; + this.xrLabel126.StylePriority.UseBorders = false; + this.xrLabel126.StylePriority.UseFont = false; + this.xrLabel126.StylePriority.UseForeColor = false; + this.xrLabel126.StylePriority.UseTextAlignment = false; + this.xrLabel126.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox41 + // + this.xrCheckBox41.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox41.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox41.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 309.7821F); + this.xrCheckBox41.Name = "xrCheckBox41"; + this.xrCheckBox41.SizeF = new System.Drawing.SizeF(23.31586F, 18F); + this.xrCheckBox41.StylePriority.UseBorders = false; + this.xrCheckBox41.StylePriority.UseFont = false; + this.xrCheckBox41.StylePriority.UseTextAlignment = false; + this.xrCheckBox41.Text = " "; + this.xrCheckBox41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel127 + // + this.xrLabel127.BorderColor = System.Drawing.Color.Black; + this.xrLabel127.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel127.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel127.ForeColor = System.Drawing.Color.Black; + this.xrLabel127.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 309.7821F); + this.xrLabel127.Name = "xrLabel127"; + this.xrLabel127.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel127.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel127.StylePriority.UseBorderColor = false; + this.xrLabel127.StylePriority.UseBorders = false; + this.xrLabel127.StylePriority.UseFont = false; + this.xrLabel127.StylePriority.UseForeColor = false; + this.xrLabel127.StylePriority.UseTextAlignment = false; + this.xrLabel127.Text = "und zwar:.."; + this.xrLabel127.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox40 + // + this.xrCheckBox40.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox40.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox40.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 287.7818F); + this.xrCheckBox40.Name = "xrCheckBox40"; + this.xrCheckBox40.SizeF = new System.Drawing.SizeF(24.48813F, 21.99997F); + this.xrCheckBox40.StylePriority.UseBorders = false; + this.xrCheckBox40.StylePriority.UseFont = false; + this.xrCheckBox40.StylePriority.UseTextAlignment = false; + this.xrCheckBox40.Text = " "; + this.xrCheckBox40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel128 + // + this.xrLabel128.BorderColor = System.Drawing.Color.Black; + this.xrLabel128.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel128.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel128.ForeColor = System.Drawing.Color.Red; + this.xrLabel128.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 287.7818F); + this.xrLabel128.Name = "xrLabel128"; + this.xrLabel128.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel128.SizeF = new System.Drawing.SizeF(23.31586F, 21.99997F); + this.xrLabel128.StylePriority.UseBorderColor = false; + this.xrLabel128.StylePriority.UseBorders = false; + this.xrLabel128.StylePriority.UseFont = false; + this.xrLabel128.StylePriority.UseForeColor = false; + this.xrLabel128.StylePriority.UseTextAlignment = false; + this.xrLabel128.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel129 + // + this.xrLabel129.BorderColor = System.Drawing.Color.Black; + this.xrLabel129.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel129.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel129.ForeColor = System.Drawing.Color.Black; + this.xrLabel129.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 287.7818F); + this.xrLabel129.Name = "xrLabel129"; + this.xrLabel129.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel129.SizeF = new System.Drawing.SizeF(270.7401F, 21.99997F); + this.xrLabel129.StylePriority.UseBorderColor = false; + this.xrLabel129.StylePriority.UseBorders = false; + this.xrLabel129.StylePriority.UseFont = false; + this.xrLabel129.StylePriority.UseForeColor = false; + this.xrLabel129.StylePriority.UseTextAlignment = false; + this.xrLabel129.Text = "Schule, Studium, Ausbildung, berufl. Reha"; + this.xrLabel129.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel116 + // + this.xrLabel116.BorderColor = System.Drawing.Color.Black; + this.xrLabel116.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel116.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel116.ForeColor = System.Drawing.Color.Black; + this.xrLabel116.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 233.7817F); + this.xrLabel116.Name = "xrLabel116"; + this.xrLabel116.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel116.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel116.StylePriority.UseBorderColor = false; + this.xrLabel116.StylePriority.UseBorders = false; + this.xrLabel116.StylePriority.UseFont = false; + this.xrLabel116.StylePriority.UseForeColor = false; + this.xrLabel116.StylePriority.UseTextAlignment = false; + this.xrLabel116.Text = "Angehörigenpflege"; + this.xrLabel116.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel117 + // + this.xrLabel117.BorderColor = System.Drawing.Color.Black; + this.xrLabel117.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel117.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel117.ForeColor = System.Drawing.Color.Black; + this.xrLabel117.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 193.7814F); + this.xrLabel117.Name = "xrLabel117"; + this.xrLabel117.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel117.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel117.StylePriority.UseBorderColor = false; + this.xrLabel117.StylePriority.UseBorders = false; + this.xrLabel117.StylePriority.UseFont = false; + this.xrLabel117.StylePriority.UseForeColor = false; + this.xrLabel117.StylePriority.UseTextAlignment = false; + this.xrLabel117.Text = "Außerhalb des Arbeitsmarktes"; + this.xrLabel117.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel118 + // + this.xrLabel118.BorderColor = System.Drawing.Color.Black; + this.xrLabel118.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel118.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel118.ForeColor = System.Drawing.Color.Red; + this.xrLabel118.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 193.7814F); + this.xrLabel118.Name = "xrLabel118"; + this.xrLabel118.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel118.SizeF = new System.Drawing.SizeF(23.31586F, 22F); + this.xrLabel118.StylePriority.UseBorderColor = false; + this.xrLabel118.StylePriority.UseBorders = false; + this.xrLabel118.StylePriority.UseFont = false; + this.xrLabel118.StylePriority.UseForeColor = false; + this.xrLabel118.StylePriority.UseTextAlignment = false; + this.xrLabel118.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox35 + // + this.xrCheckBox35.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox35.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox35.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 193.7814F); + this.xrCheckBox35.Name = "xrCheckBox35"; + this.xrCheckBox35.SizeF = new System.Drawing.SizeF(23.98004F, 22F); + this.xrCheckBox35.StylePriority.UseBorders = false; + this.xrCheckBox35.StylePriority.UseFont = false; + this.xrCheckBox35.StylePriority.UseTextAlignment = false; + this.xrCheckBox35.Text = " "; + this.xrCheckBox35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel119 + // + this.xrLabel119.BorderColor = System.Drawing.Color.Black; + this.xrLabel119.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel119.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel119.ForeColor = System.Drawing.Color.Black; + this.xrLabel119.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 215.7818F); + this.xrLabel119.Name = "xrLabel119"; + this.xrLabel119.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel119.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel119.StylePriority.UseBorderColor = false; + this.xrLabel119.StylePriority.UseBorders = false; + this.xrLabel119.StylePriority.UseFont = false; + this.xrLabel119.StylePriority.UseForeColor = false; + this.xrLabel119.StylePriority.UseTextAlignment = false; + this.xrLabel119.Text = "Elternzeit"; + this.xrLabel119.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox36 + // + this.xrCheckBox36.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox36.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox36.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 215.7818F); + this.xrCheckBox36.Name = "xrCheckBox36"; + this.xrCheckBox36.SizeF = new System.Drawing.SizeF(23.31586F, 18F); + this.xrCheckBox36.StylePriority.UseBorders = false; + this.xrCheckBox36.StylePriority.UseFont = false; + this.xrCheckBox36.StylePriority.UseTextAlignment = false; + this.xrCheckBox36.Text = " "; + this.xrCheckBox36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox37 + // + this.xrCheckBox37.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox37.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox37.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 233.7817F); + this.xrCheckBox37.Name = "xrCheckBox37"; + this.xrCheckBox37.SizeF = new System.Drawing.SizeF(23.31586F, 18F); + this.xrCheckBox37.StylePriority.UseBorders = false; + this.xrCheckBox37.StylePriority.UseFont = false; + this.xrCheckBox37.StylePriority.UseTextAlignment = false; + this.xrCheckBox37.Text = " "; + this.xrCheckBox37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel120 + // + this.xrLabel120.BorderColor = System.Drawing.Color.Black; + this.xrLabel120.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel120.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel120.ForeColor = System.Drawing.Color.Red; + this.xrLabel120.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 215.7818F); + this.xrLabel120.Name = "xrLabel120"; + this.xrLabel120.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel120.SizeF = new System.Drawing.SizeF(24.5777F, 18F); + this.xrLabel120.StylePriority.UseBorderColor = false; + this.xrLabel120.StylePriority.UseBorders = false; + this.xrLabel120.StylePriority.UseFont = false; + this.xrLabel120.StylePriority.UseForeColor = false; + this.xrLabel120.StylePriority.UseTextAlignment = false; + this.xrLabel120.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel121 + // + this.xrLabel121.BorderColor = System.Drawing.Color.Black; + this.xrLabel121.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel121.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel121.ForeColor = System.Drawing.Color.Red; + this.xrLabel121.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 233.7817F); + this.xrLabel121.Name = "xrLabel121"; + this.xrLabel121.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel121.SizeF = new System.Drawing.SizeF(24.58768F, 18F); + this.xrLabel121.StylePriority.UseBorderColor = false; + this.xrLabel121.StylePriority.UseBorders = false; + this.xrLabel121.StylePriority.UseFont = false; + this.xrLabel121.StylePriority.UseForeColor = false; + this.xrLabel121.StylePriority.UseTextAlignment = false; + this.xrLabel121.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel122 + // + this.xrLabel122.BorderColor = System.Drawing.Color.Black; + this.xrLabel122.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel122.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel122.ForeColor = System.Drawing.Color.Red; + this.xrLabel122.LocationFloat = new DevExpress.Utils.PointFloat(355.5562F, 269.7816F); + this.xrLabel122.Name = "xrLabel122"; + this.xrLabel122.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel122.SizeF = new System.Drawing.SizeF(24.67081F, 18F); + this.xrLabel122.StylePriority.UseBorderColor = false; + this.xrLabel122.StylePriority.UseBorders = false; + this.xrLabel122.StylePriority.UseFont = false; + this.xrLabel122.StylePriority.UseForeColor = false; + this.xrLabel122.StylePriority.UseTextAlignment = false; + this.xrLabel122.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel123 + // + this.xrLabel123.BorderColor = System.Drawing.Color.Black; + this.xrLabel123.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel123.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel123.ForeColor = System.Drawing.Color.Red; + this.xrLabel123.LocationFloat = new DevExpress.Utils.PointFloat(355.5562F, 251.7816F); + this.xrLabel123.Name = "xrLabel123"; + this.xrLabel123.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel123.SizeF = new System.Drawing.SizeF(24.62921F, 18F); + this.xrLabel123.StylePriority.UseBorderColor = false; + this.xrLabel123.StylePriority.UseBorders = false; + this.xrLabel123.StylePriority.UseFont = false; + this.xrLabel123.StylePriority.UseForeColor = false; + this.xrLabel123.StylePriority.UseTextAlignment = false; + this.xrLabel123.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox39 + // + this.xrCheckBox39.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox39.Font = new System.Drawing.Font("Arial", 8F); + this.xrCheckBox39.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox39.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 269.7816F); + this.xrCheckBox39.Name = "xrCheckBox39"; + this.xrCheckBox39.SizeF = new System.Drawing.SizeF(23.31586F, 18F); + this.xrCheckBox39.StylePriority.UseBorders = false; + this.xrCheckBox39.StylePriority.UseFont = false; + this.xrCheckBox39.StylePriority.UseTextAlignment = false; + this.xrCheckBox39.Text = " "; + this.xrCheckBox39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox38 + // + this.xrCheckBox38.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox38.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox38.LocationFloat = new DevExpress.Utils.PointFloat(380.2331F, 251.7816F); + this.xrCheckBox38.Name = "xrCheckBox38"; + this.xrCheckBox38.SizeF = new System.Drawing.SizeF(23.31586F, 18F); + this.xrCheckBox38.StylePriority.UseBorders = false; + this.xrCheckBox38.StylePriority.UseFont = false; + this.xrCheckBox38.StylePriority.UseTextAlignment = false; + this.xrCheckBox38.Text = " "; + this.xrCheckBox38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel124 + // + this.xrLabel124.BorderColor = System.Drawing.Color.Black; + this.xrLabel124.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel124.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel124.ForeColor = System.Drawing.Color.Black; + this.xrLabel124.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 251.7816F); + this.xrLabel124.Name = "xrLabel124"; + this.xrLabel124.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel124.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel124.StylePriority.UseBorderColor = false; + this.xrLabel124.StylePriority.UseBorders = false; + this.xrLabel124.StylePriority.UseFont = false; + this.xrLabel124.StylePriority.UseForeColor = false; + this.xrLabel124.StylePriority.UseTextAlignment = false; + this.xrLabel124.Text = "Ehrenamt"; + this.xrLabel124.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel125 + // + this.xrLabel125.BorderColor = System.Drawing.Color.Black; + this.xrLabel125.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel125.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel125.ForeColor = System.Drawing.Color.Black; + this.xrLabel125.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 269.7816F); + this.xrLabel125.Name = "xrLabel125"; + this.xrLabel125.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel125.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel125.StylePriority.UseBorderColor = false; + this.xrLabel125.StylePriority.UseBorders = false; + this.xrLabel125.StylePriority.UseFont = false; + this.xrLabel125.StylePriority.UseForeColor = false; + this.xrLabel125.StylePriority.UseTextAlignment = false; + this.xrLabel125.Text = "Sonstiges:"; + this.xrLabel125.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel7 + // + this.xrLabel7.BorderColor = System.Drawing.Color.Black; + this.xrLabel7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel7.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel7.ForeColor = System.Drawing.Color.Black; + this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 139.7814F); + this.xrLabel7.Name = "xrLabel7"; + this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel7.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel7.StylePriority.UseBorderColor = false; + this.xrLabel7.StylePriority.UseBorders = false; + this.xrLabel7.StylePriority.UseFont = false; + this.xrLabel7.StylePriority.UseForeColor = false; + this.xrLabel7.StylePriority.UseTextAlignment = false; + this.xrLabel7.Text = "Zuverdienst"; + this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel14 + // + this.xrLabel14.BorderColor = System.Drawing.Color.Black; + this.xrLabel14.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel14.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel14.ForeColor = System.Drawing.Color.Black; + this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 99.7811F); + this.xrLabel14.Name = "xrLabel14"; + this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel14.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel14.StylePriority.UseBorderColor = false; + this.xrLabel14.StylePriority.UseBorders = false; + this.xrLabel14.StylePriority.UseFont = false; + this.xrLabel14.StylePriority.UseForeColor = false; + this.xrLabel14.StylePriority.UseTextAlignment = false; + this.xrLabel14.Text = "Besonderer Arbeitsmarkt"; + this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel21 + // + this.xrLabel21.BorderColor = System.Drawing.Color.Black; + this.xrLabel21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel21.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel21.ForeColor = System.Drawing.Color.Red; + this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(380.2332F, 99.7811F); + this.xrLabel21.Name = "xrLabel21"; + this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel21.SizeF = new System.Drawing.SizeF(23.3158F, 22F); + this.xrLabel21.StylePriority.UseBorderColor = false; + this.xrLabel21.StylePriority.UseBorders = false; + this.xrLabel21.StylePriority.UseFont = false; + this.xrLabel21.StylePriority.UseForeColor = false; + this.xrLabel21.StylePriority.UseTextAlignment = false; + this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox30 + // + this.xrCheckBox30.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox30.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox30.LocationFloat = new DevExpress.Utils.PointFloat(355.7824F, 99.78129F); + this.xrCheckBox30.Name = "xrCheckBox30"; + this.xrCheckBox30.SizeF = new System.Drawing.SizeF(23.64285F, 22F); + this.xrCheckBox30.StylePriority.UseBorders = false; + this.xrCheckBox30.StylePriority.UseFont = false; + this.xrCheckBox30.StylePriority.UseTextAlignment = false; + this.xrCheckBox30.Text = " "; + this.xrCheckBox30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel25 + // + this.xrLabel25.BorderColor = System.Drawing.Color.Black; + this.xrLabel25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel25.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel25.ForeColor = System.Drawing.Color.Black; + this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 121.7812F); + this.xrLabel25.Name = "xrLabel25"; + this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel25.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel25.StylePriority.UseBorderColor = false; + this.xrLabel25.StylePriority.UseBorders = false; + this.xrLabel25.StylePriority.UseFont = false; + this.xrLabel25.StylePriority.UseForeColor = false; + this.xrLabel25.StylePriority.UseTextAlignment = false; + this.xrLabel25.Text = "WfbM"; + this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox31 + // + this.xrCheckBox31.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox31.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox31.LocationFloat = new DevExpress.Utils.PointFloat(380.402F, 121.7812F); + this.xrCheckBox31.Name = "xrCheckBox31"; + this.xrCheckBox31.SizeF = new System.Drawing.SizeF(22.44983F, 18F); + this.xrCheckBox31.StylePriority.UseBorders = false; + this.xrCheckBox31.StylePriority.UseFont = false; + this.xrCheckBox31.StylePriority.UseTextAlignment = false; + this.xrCheckBox31.Text = " "; + this.xrCheckBox31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox32 + // + this.xrCheckBox32.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox32.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox32.LocationFloat = new DevExpress.Utils.PointFloat(380.2332F, 139.7814F); + this.xrCheckBox32.Name = "xrCheckBox32"; + this.xrCheckBox32.SizeF = new System.Drawing.SizeF(23.3158F, 18F); + this.xrCheckBox32.StylePriority.UseBorders = false; + this.xrCheckBox32.StylePriority.UseFont = false; + this.xrCheckBox32.StylePriority.UseTextAlignment = false; + this.xrCheckBox32.Text = " "; + this.xrCheckBox32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel28 + // + this.xrLabel28.BorderColor = System.Drawing.Color.Black; + this.xrLabel28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel28.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel28.ForeColor = System.Drawing.Color.Red; + this.xrLabel28.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 121.7812F); + this.xrLabel28.Name = "xrLabel28"; + this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel28.SizeF = new System.Drawing.SizeF(23.86926F, 17.99997F); + this.xrLabel28.StylePriority.UseBorderColor = false; + this.xrLabel28.StylePriority.UseBorders = false; + this.xrLabel28.StylePriority.UseFont = false; + this.xrLabel28.StylePriority.UseForeColor = false; + this.xrLabel28.StylePriority.UseTextAlignment = false; + this.xrLabel28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel32 + // + this.xrLabel32.BorderColor = System.Drawing.Color.Black; + this.xrLabel32.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel32.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel32.ForeColor = System.Drawing.Color.Red; + this.xrLabel32.LocationFloat = new DevExpress.Utils.PointFloat(355.5561F, 139.7814F); + this.xrLabel32.Name = "xrLabel32"; + this.xrLabel32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel32.SizeF = new System.Drawing.SizeF(24.49817F, 18F); + this.xrLabel32.StylePriority.UseBorderColor = false; + this.xrLabel32.StylePriority.UseBorders = false; + this.xrLabel32.StylePriority.UseFont = false; + this.xrLabel32.StylePriority.UseForeColor = false; + this.xrLabel32.StylePriority.UseTextAlignment = false; + this.xrLabel32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel42 + // + this.xrLabel42.BorderColor = System.Drawing.Color.Black; + this.xrLabel42.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel42.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel42.ForeColor = System.Drawing.Color.Red; + this.xrLabel42.LocationFloat = new DevExpress.Utils.PointFloat(355.5562F, 175.7815F); + this.xrLabel42.Name = "xrLabel42"; + this.xrLabel42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel42.SizeF = new System.Drawing.SizeF(23.98004F, 17.99999F); + this.xrLabel42.StylePriority.UseBorderColor = false; + this.xrLabel42.StylePriority.UseBorders = false; + this.xrLabel42.StylePriority.UseFont = false; + this.xrLabel42.StylePriority.UseForeColor = false; + this.xrLabel42.StylePriority.UseTextAlignment = false; + this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel43 + // + this.xrLabel43.BorderColor = System.Drawing.Color.Black; + this.xrLabel43.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel43.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel43.ForeColor = System.Drawing.Color.Red; + this.xrLabel43.LocationFloat = new DevExpress.Utils.PointFloat(355.5562F, 157.7813F); + this.xrLabel43.Name = "xrLabel43"; + this.xrLabel43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel43.SizeF = new System.Drawing.SizeF(24.53973F, 18F); + this.xrLabel43.StylePriority.UseBorderColor = false; + this.xrLabel43.StylePriority.UseBorders = false; + this.xrLabel43.StylePriority.UseFont = false; + this.xrLabel43.StylePriority.UseForeColor = false; + this.xrLabel43.StylePriority.UseTextAlignment = false; + this.xrLabel43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox34 + // + this.xrCheckBox34.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox34.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox34.LocationFloat = new DevExpress.Utils.PointFloat(380.2332F, 175.7815F); + this.xrCheckBox34.Name = "xrCheckBox34"; + this.xrCheckBox34.SizeF = new System.Drawing.SizeF(23.3158F, 17.99999F); + this.xrCheckBox34.StylePriority.UseBorders = false; + this.xrCheckBox34.StylePriority.UseFont = false; + this.xrCheckBox34.StylePriority.UseTextAlignment = false; + this.xrCheckBox34.Text = " "; + this.xrCheckBox34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox33 + // + this.xrCheckBox33.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox33.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox33.LocationFloat = new DevExpress.Utils.PointFloat(380.2332F, 157.7813F); + this.xrCheckBox33.Name = "xrCheckBox33"; + this.xrCheckBox33.SizeF = new System.Drawing.SizeF(23.3158F, 18F); + this.xrCheckBox33.StylePriority.UseBorders = false; + this.xrCheckBox33.StylePriority.UseFont = false; + this.xrCheckBox33.StylePriority.UseTextAlignment = false; + this.xrCheckBox33.Text = " "; + this.xrCheckBox33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel114 + // + this.xrLabel114.BorderColor = System.Drawing.Color.Black; + this.xrLabel114.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel114.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel114.ForeColor = System.Drawing.Color.Black; + this.xrLabel114.LocationFloat = new DevExpress.Utils.PointFloat(403.5489F, 157.7813F); + this.xrLabel114.Name = "xrLabel114"; + this.xrLabel114.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel114.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel114.StylePriority.UseBorderColor = false; + this.xrLabel114.StylePriority.UseBorders = false; + this.xrLabel114.StylePriority.UseFont = false; + this.xrLabel114.StylePriority.UseForeColor = false; + this.xrLabel114.StylePriority.UseTextAlignment = false; + this.xrLabel114.Text = "Tagesstätte"; + this.xrLabel114.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel115 + // + this.xrLabel115.BorderColor = System.Drawing.Color.Black; + this.xrLabel115.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel115.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel115.ForeColor = System.Drawing.Color.Black; + this.xrLabel115.LocationFloat = new DevExpress.Utils.PointFloat(403.5492F, 175.7815F); + this.xrLabel115.Name = "xrLabel115"; + this.xrLabel115.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel115.SizeF = new System.Drawing.SizeF(270.7401F, 17.99999F); + this.xrLabel115.StylePriority.UseBorderColor = false; + this.xrLabel115.StylePriority.UseBorders = false; + this.xrLabel115.StylePriority.UseFont = false; + this.xrLabel115.StylePriority.UseForeColor = false; + this.xrLabel115.StylePriority.UseTextAlignment = false; + this.xrLabel115.Text = "Sonstiges:"; + this.xrLabel115.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel110 + // + this.xrLabel110.BorderColor = System.Drawing.Color.Black; + this.xrLabel110.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel110.CanGrow = false; + this.xrLabel110.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel110.ForeColor = System.Drawing.Color.Black; + this.xrLabel110.LocationFloat = new DevExpress.Utils.PointFloat(51.54862F, 1037.185F); + this.xrLabel110.Name = "xrLabel110"; + this.xrLabel110.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel110.SizeF = new System.Drawing.SizeF(270.6504F, 18F); + this.xrLabel110.StylePriority.UseBorderColor = false; + this.xrLabel110.StylePriority.UseBorders = false; + this.xrLabel110.StylePriority.UseFont = false; + this.xrLabel110.StylePriority.UseForeColor = false; + this.xrLabel110.StylePriority.UseTextAlignment = false; + this.xrLabel110.Text = "Sonstiges:"; + this.xrLabel110.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel111 + // + this.xrLabel111.BorderColor = System.Drawing.Color.Black; + this.xrLabel111.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel111.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel111.ForeColor = System.Drawing.Color.Black; + this.xrLabel111.LocationFloat = new DevExpress.Utils.PointFloat(51.33487F, 1019.185F); + this.xrLabel111.Name = "xrLabel111"; + this.xrLabel111.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel111.SizeF = new System.Drawing.SizeF(270.692F, 17.99994F); + this.xrLabel111.StylePriority.UseBorderColor = false; + this.xrLabel111.StylePriority.UseBorders = false; + this.xrLabel111.StylePriority.UseFont = false; + this.xrLabel111.StylePriority.UseForeColor = false; + this.xrLabel111.StylePriority.UseTextAlignment = false; + this.xrLabel111.Text = "Geringfügige Beschäftigung"; + this.xrLabel111.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox28 + // + this.xrCheckBox28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox28.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox28.LocationFloat = new DevExpress.Utils.PointFloat(27.33433F, 1019.185F); + this.xrCheckBox28.Name = "xrCheckBox28"; + this.xrCheckBox28.SizeF = new System.Drawing.SizeF(24F, 18F); + this.xrCheckBox28.StylePriority.UseBorders = false; + this.xrCheckBox28.StylePriority.UseFont = false; + this.xrCheckBox28.StylePriority.UseTextAlignment = false; + this.xrCheckBox28.Text = " "; + this.xrCheckBox28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox29 + // + this.xrCheckBox29.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrCheckBox29.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox29.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 1037.185F); + this.xrCheckBox29.Name = "xrCheckBox29"; + this.xrCheckBox29.SizeF = new System.Drawing.SizeF(24.17218F, 18.00012F); + this.xrCheckBox29.StylePriority.UseBorders = false; + this.xrCheckBox29.StylePriority.UseFont = false; + this.xrCheckBox29.StylePriority.UseTextAlignment = false; + this.xrCheckBox29.Text = " "; + this.xrCheckBox29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel112 + // + this.xrLabel112.BorderColor = System.Drawing.Color.Black; + this.xrLabel112.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel112.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel112.ForeColor = System.Drawing.Color.Red; + this.xrLabel112.LocationFloat = new DevExpress.Utils.PointFloat(3.338936F, 1019.185F); + this.xrLabel112.Name = "xrLabel112"; + this.xrLabel112.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel112.SizeF = new System.Drawing.SizeF(23.99F, 18F); + this.xrLabel112.StylePriority.UseBorderColor = false; + this.xrLabel112.StylePriority.UseBorders = false; + this.xrLabel112.StylePriority.UseFont = false; + this.xrLabel112.StylePriority.UseForeColor = false; + this.xrLabel112.StylePriority.UseTextAlignment = false; + this.xrLabel112.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel113 + // + this.xrLabel113.BorderColor = System.Drawing.Color.Black; + this.xrLabel113.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel113.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel113.ForeColor = System.Drawing.Color.Red; + this.xrLabel113.LocationFloat = new DevExpress.Utils.PointFloat(3.338941F, 1037.185F); + this.xrLabel113.Name = "xrLabel113"; + this.xrLabel113.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel113.SizeF = new System.Drawing.SizeF(23.99003F, 18.00012F); + this.xrLabel113.StylePriority.UseBorderColor = false; + this.xrLabel113.StylePriority.UseBorders = false; + this.xrLabel113.StylePriority.UseFont = false; + this.xrLabel113.StylePriority.UseForeColor = false; + this.xrLabel113.StylePriority.UseTextAlignment = false; + this.xrLabel113.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel108 + // + this.xrLabel108.BorderColor = System.Drawing.Color.Black; + this.xrLabel108.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel108.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel108.ForeColor = System.Drawing.Color.Red; + this.xrLabel108.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 1001.185F); + this.xrLabel108.Name = "xrLabel108"; + this.xrLabel108.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel108.SizeF = new System.Drawing.SizeF(23.99F, 18F); + this.xrLabel108.StylePriority.UseBorderColor = false; + this.xrLabel108.StylePriority.UseBorders = false; + this.xrLabel108.StylePriority.UseFont = false; + this.xrLabel108.StylePriority.UseForeColor = false; + this.xrLabel108.StylePriority.UseTextAlignment = false; + this.xrLabel108.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel107 + // + this.xrLabel107.BorderColor = System.Drawing.Color.Black; + this.xrLabel107.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel107.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel107.ForeColor = System.Drawing.Color.Red; + this.xrLabel107.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 983.1852F); + this.xrLabel107.Name = "xrLabel107"; + this.xrLabel107.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel107.SizeF = new System.Drawing.SizeF(23.98F, 18F); + this.xrLabel107.StylePriority.UseBorderColor = false; + this.xrLabel107.StylePriority.UseBorders = false; + this.xrLabel107.StylePriority.UseFont = false; + this.xrLabel107.StylePriority.UseForeColor = false; + this.xrLabel107.StylePriority.UseTextAlignment = false; + this.xrLabel107.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox27 + // + this.xrCheckBox27.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox27.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox27.LocationFloat = new DevExpress.Utils.PointFloat(27.29044F, 1001.185F); + this.xrCheckBox27.Name = "xrCheckBox27"; + this.xrCheckBox27.SizeF = new System.Drawing.SizeF(24F, 18F); + this.xrCheckBox27.StylePriority.UseBorders = false; + this.xrCheckBox27.StylePriority.UseFont = false; + this.xrCheckBox27.StylePriority.UseTextAlignment = false; + this.xrCheckBox27.Text = " "; + this.xrCheckBox27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox26 + // + this.xrCheckBox26.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox26.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox26.LocationFloat = new DevExpress.Utils.PointFloat(27.28643F, 983.1852F); + this.xrCheckBox26.Name = "xrCheckBox26"; + this.xrCheckBox26.SizeF = new System.Drawing.SizeF(24F, 18F); + this.xrCheckBox26.StylePriority.UseBorders = false; + this.xrCheckBox26.StylePriority.UseFont = false; + this.xrCheckBox26.StylePriority.UseTextAlignment = false; + this.xrCheckBox26.Text = " "; + this.xrCheckBox26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel101 + // + this.xrLabel101.BorderColor = System.Drawing.Color.Black; + this.xrLabel101.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel101.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel101.ForeColor = System.Drawing.Color.Black; + this.xrLabel101.LocationFloat = new DevExpress.Utils.PointFloat(51.28687F, 983.1852F); + this.xrLabel101.Name = "xrLabel101"; + this.xrLabel101.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel101.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel101.StylePriority.UseBorderColor = false; + this.xrLabel101.StylePriority.UseBorders = false; + this.xrLabel101.StylePriority.UseFont = false; + this.xrLabel101.StylePriority.UseForeColor = false; + this.xrLabel101.StylePriority.UseTextAlignment = false; + this.xrLabel101.Text = "Arbeitsverhältnis in Vollzeit"; + this.xrLabel101.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox25 + // + this.xrCheckBox25.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox25.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox25.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 961.1846F); + this.xrCheckBox25.Name = "xrCheckBox25"; + this.xrCheckBox25.SizeF = new System.Drawing.SizeF(23.98F, 22F); + this.xrCheckBox25.StylePriority.UseBorders = false; + this.xrCheckBox25.StylePriority.UseFont = false; + this.xrCheckBox25.StylePriority.UseTextAlignment = false; + this.xrCheckBox25.Text = " "; + this.xrCheckBox25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel102 + // + this.xrLabel102.BorderColor = System.Drawing.Color.Black; + this.xrLabel102.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel102.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel102.ForeColor = System.Drawing.Color.Red; + this.xrLabel102.LocationFloat = new DevExpress.Utils.PointFloat(27.28702F, 961.1846F); + this.xrLabel102.Name = "xrLabel102"; + this.xrLabel102.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel102.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel102.StylePriority.UseBorderColor = false; + this.xrLabel102.StylePriority.UseBorders = false; + this.xrLabel102.StylePriority.UseFont = false; + this.xrLabel102.StylePriority.UseForeColor = false; + this.xrLabel102.StylePriority.UseTextAlignment = false; + this.xrLabel102.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel103 + // + this.xrLabel103.BorderColor = System.Drawing.Color.Black; + this.xrLabel103.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel103.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel103.ForeColor = System.Drawing.Color.Black; + this.xrLabel103.LocationFloat = new DevExpress.Utils.PointFloat(51.28687F, 961.1846F); + this.xrLabel103.Name = "xrLabel103"; + this.xrLabel103.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel103.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel103.StylePriority.UseBorderColor = false; + this.xrLabel103.StylePriority.UseBorders = false; + this.xrLabel103.StylePriority.UseFont = false; + this.xrLabel103.StylePriority.UseForeColor = false; + this.xrLabel103.StylePriority.UseTextAlignment = false; + this.xrLabel103.Text = "Allgemeiner Arbeitsmarkt"; + this.xrLabel103.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel104 + // + this.xrLabel104.BorderColor = System.Drawing.Color.Black; + this.xrLabel104.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel104.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel104.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel104.LocationFloat = new DevExpress.Utils.PointFloat(51.28687F, 918.1846F); + this.xrLabel104.Name = "xrLabel104"; + this.xrLabel104.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel104.SizeF = new System.Drawing.SizeF(270.74F, 43F); + this.xrLabel104.StylePriority.UseBorderColor = false; + this.xrLabel104.StylePriority.UseBorders = false; + this.xrLabel104.StylePriority.UseFont = false; + this.xrLabel104.StylePriority.UseForeColor = false; + this.xrLabel104.StylePriority.UseTextAlignment = false; + this.xrLabel104.Text = "Tätigkeiten in den letzten 24 Monaten vor dem ZV"; + this.xrLabel104.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel105 + // + this.xrLabel105.BorderColor = System.Drawing.Color.Black; + this.xrLabel105.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel105.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel105.ForeColor = System.Drawing.Color.Red; + this.xrLabel105.LocationFloat = new DevExpress.Utils.PointFloat(27.28689F, 918.1849F); + this.xrLabel105.Name = "xrLabel105"; + this.xrLabel105.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel105.SizeF = new System.Drawing.SizeF(24.00002F, 42.99994F); + this.xrLabel105.StylePriority.UseBorderColor = false; + this.xrLabel105.StylePriority.UseBorders = false; + this.xrLabel105.StylePriority.UseFont = false; + this.xrLabel105.StylePriority.UseForeColor = false; + this.xrLabel105.StylePriority.UseTextAlignment = false; + this.xrLabel105.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel106 + // + this.xrLabel106.BorderColor = System.Drawing.Color.Black; + this.xrLabel106.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel106.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel106.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel106.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 918.1849F); + this.xrLabel106.Name = "xrLabel106"; + this.xrLabel106.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel106.SizeF = new System.Drawing.SizeF(23.98F, 43F); + this.xrLabel106.StylePriority.UseBorderColor = false; + this.xrLabel106.StylePriority.UseBorders = false; + this.xrLabel106.StylePriority.UseFont = false; + this.xrLabel106.StylePriority.UseForeColor = false; + this.xrLabel106.StylePriority.UseTextAlignment = false; + this.xrLabel106.Text = "3."; + this.xrLabel106.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel109 + // + this.xrLabel109.BorderColor = System.Drawing.Color.Black; + this.xrLabel109.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel109.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel109.ForeColor = System.Drawing.Color.Black; + this.xrLabel109.LocationFloat = new DevExpress.Utils.PointFloat(51.29039F, 1001.185F); + this.xrLabel109.Name = "xrLabel109"; + this.xrLabel109.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel109.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel109.StylePriority.UseBorderColor = false; + this.xrLabel109.StylePriority.UseBorders = false; + this.xrLabel109.StylePriority.UseFont = false; + this.xrLabel109.StylePriority.UseForeColor = false; + this.xrLabel109.StylePriority.UseTextAlignment = false; + this.xrLabel109.Text = "Arbeitsverhältnis in Teilzeit"; + this.xrLabel109.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel92 + // + this.xrLabel92.BorderColor = System.Drawing.Color.Black; + this.xrLabel92.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel92.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel92.ForeColor = System.Drawing.Color.Black; + this.xrLabel92.LocationFloat = new DevExpress.Utils.PointFloat(51.2874F, 874.1848F); + this.xrLabel92.Name = "xrLabel92"; + this.xrLabel92.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel92.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel92.StylePriority.UseBorderColor = false; + this.xrLabel92.StylePriority.UseBorders = false; + this.xrLabel92.StylePriority.UseFont = false; + this.xrLabel92.StylePriority.UseForeColor = false; + this.xrLabel92.StylePriority.UseTextAlignment = false; + this.xrLabel92.Text = "Bis 5 Jahre im erlernten Beruf"; + this.xrLabel92.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox23 + // + this.xrCheckBox23.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox23.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox23.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 874.1851F); + this.xrCheckBox23.Name = "xrCheckBox23"; + this.xrCheckBox23.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox23.StylePriority.UseBorders = false; + this.xrCheckBox23.StylePriority.UseFont = false; + this.xrCheckBox23.StylePriority.UseTextAlignment = false; + this.xrCheckBox23.Text = " "; + this.xrCheckBox23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox22 + // + this.xrCheckBox22.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox22.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox22.LocationFloat = new DevExpress.Utils.PointFloat(3.297659F, 852.1848F); + this.xrCheckBox22.Name = "xrCheckBox22"; + this.xrCheckBox22.SizeF = new System.Drawing.SizeF(24F, 22.00006F); + this.xrCheckBox22.StylePriority.UseBorders = false; + this.xrCheckBox22.StylePriority.UseFont = false; + this.xrCheckBox22.StylePriority.UseTextAlignment = false; + this.xrCheckBox22.Text = " "; + this.xrCheckBox22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel93 + // + this.xrLabel93.BorderColor = System.Drawing.Color.Black; + this.xrLabel93.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel93.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel93.ForeColor = System.Drawing.Color.Red; + this.xrLabel93.LocationFloat = new DevExpress.Utils.PointFloat(27.29742F, 852.185F); + this.xrLabel93.Name = "xrLabel93"; + this.xrLabel93.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel93.SizeF = new System.Drawing.SizeF(23.98999F, 21.98981F); + this.xrLabel93.StylePriority.UseBorderColor = false; + this.xrLabel93.StylePriority.UseBorders = false; + this.xrLabel93.StylePriority.UseFont = false; + this.xrLabel93.StylePriority.UseForeColor = false; + this.xrLabel93.StylePriority.UseTextAlignment = false; + this.xrLabel93.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel94 + // + this.xrLabel94.BorderColor = System.Drawing.Color.Black; + this.xrLabel94.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel94.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel94.ForeColor = System.Drawing.Color.Black; + this.xrLabel94.LocationFloat = new DevExpress.Utils.PointFloat(51.29737F, 852.185F); + this.xrLabel94.Name = "xrLabel94"; + this.xrLabel94.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel94.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel94.StylePriority.UseBorderColor = false; + this.xrLabel94.StylePriority.UseBorders = false; + this.xrLabel94.StylePriority.UseFont = false; + this.xrLabel94.StylePriority.UseForeColor = false; + this.xrLabel94.StylePriority.UseTextAlignment = false; + this.xrLabel94.Text = "Keine im erlernten Beruf"; + this.xrLabel94.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel95 + // + this.xrLabel95.BorderColor = System.Drawing.Color.Black; + this.xrLabel95.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel95.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel95.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel95.LocationFloat = new DevExpress.Utils.PointFloat(51.29737F, 830.656F); + this.xrLabel95.Name = "xrLabel95"; + this.xrLabel95.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel95.SizeF = new System.Drawing.SizeF(270.7294F, 21.52881F); + this.xrLabel95.StylePriority.UseBorderColor = false; + this.xrLabel95.StylePriority.UseBorders = false; + this.xrLabel95.StylePriority.UseFont = false; + this.xrLabel95.StylePriority.UseForeColor = false; + this.xrLabel95.StylePriority.UseTextAlignment = false; + this.xrLabel95.Text = "Erfahrung im erlernten Beruf"; + this.xrLabel95.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel96 + // + this.xrLabel96.BorderColor = System.Drawing.Color.Black; + this.xrLabel96.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel96.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel96.ForeColor = System.Drawing.Color.Red; + this.xrLabel96.LocationFloat = new DevExpress.Utils.PointFloat(27.37661F, 830.656F); + this.xrLabel96.Name = "xrLabel96"; + this.xrLabel96.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel96.SizeF = new System.Drawing.SizeF(23.9108F, 21.52887F); + this.xrLabel96.StylePriority.UseBorderColor = false; + this.xrLabel96.StylePriority.UseBorders = false; + this.xrLabel96.StylePriority.UseFont = false; + this.xrLabel96.StylePriority.UseForeColor = false; + this.xrLabel96.StylePriority.UseTextAlignment = false; + this.xrLabel96.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel97 + // + this.xrLabel97.BorderColor = System.Drawing.Color.Black; + this.xrLabel97.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel97.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel97.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel97.LocationFloat = new DevExpress.Utils.PointFloat(3.297659F, 830.656F); + this.xrLabel97.Name = "xrLabel97"; + this.xrLabel97.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel97.SizeF = new System.Drawing.SizeF(24F, 21.52881F); + this.xrLabel97.StylePriority.UseBorderColor = false; + this.xrLabel97.StylePriority.UseBorders = false; + this.xrLabel97.StylePriority.UseFont = false; + this.xrLabel97.StylePriority.UseForeColor = false; + this.xrLabel97.StylePriority.UseTextAlignment = false; + this.xrLabel97.Text = "2.\t"; + this.xrLabel97.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel98 + // + this.xrLabel98.BorderColor = System.Drawing.Color.Black; + this.xrLabel98.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel98.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel98.ForeColor = System.Drawing.Color.Red; + this.xrLabel98.LocationFloat = new DevExpress.Utils.PointFloat(27.28786F, 874.1848F); + this.xrLabel98.Name = "xrLabel98"; + this.xrLabel98.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel98.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrLabel98.StylePriority.UseBorderColor = false; + this.xrLabel98.StylePriority.UseBorders = false; + this.xrLabel98.StylePriority.UseFont = false; + this.xrLabel98.StylePriority.UseForeColor = false; + this.xrLabel98.StylePriority.UseTextAlignment = false; + this.xrLabel98.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel99 + // + this.xrLabel99.BorderColor = System.Drawing.Color.Black; + this.xrLabel99.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel99.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel99.ForeColor = System.Drawing.Color.Red; + this.xrLabel99.LocationFloat = new DevExpress.Utils.PointFloat(27.28819F, 896.1848F); + this.xrLabel99.Name = "xrLabel99"; + this.xrLabel99.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel99.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrLabel99.StylePriority.UseBorderColor = false; + this.xrLabel99.StylePriority.UseBorders = false; + this.xrLabel99.StylePriority.UseFont = false; + this.xrLabel99.StylePriority.UseForeColor = false; + this.xrLabel99.StylePriority.UseTextAlignment = false; + this.xrLabel99.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox24 + // + this.xrCheckBox24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox24.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox24.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 896.1848F); + this.xrCheckBox24.Name = "xrCheckBox24"; + this.xrCheckBox24.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox24.StylePriority.UseBorders = false; + this.xrCheckBox24.StylePriority.UseFont = false; + this.xrCheckBox24.StylePriority.UseTextAlignment = false; + this.xrCheckBox24.Text = " "; + this.xrCheckBox24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel100 + // + this.xrLabel100.BorderColor = System.Drawing.Color.Black; + this.xrLabel100.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel100.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel100.ForeColor = System.Drawing.Color.Black; + this.xrLabel100.LocationFloat = new DevExpress.Utils.PointFloat(51.28765F, 896.1848F); + this.xrLabel100.Name = "xrLabel100"; + this.xrLabel100.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel100.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel100.StylePriority.UseBorderColor = false; + this.xrLabel100.StylePriority.UseBorders = false; + this.xrLabel100.StylePriority.UseFont = false; + this.xrLabel100.StylePriority.UseForeColor = false; + this.xrLabel100.StylePriority.UseTextAlignment = false; + this.xrLabel100.Text = "Länger als 5 Jahre im erlernten Beruf"; + this.xrLabel100.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel90 + // + this.xrLabel90.BorderColor = System.Drawing.Color.Black; + this.xrLabel90.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel90.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel90.ForeColor = System.Drawing.Color.Black; + this.xrLabel90.LocationFloat = new DevExpress.Utils.PointFloat(51.29737F, 808.6559F); + this.xrLabel90.Name = "xrLabel90"; + this.xrLabel90.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel90.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel90.StylePriority.UseBorderColor = false; + this.xrLabel90.StylePriority.UseBorders = false; + this.xrLabel90.StylePriority.UseFont = false; + this.xrLabel90.StylePriority.UseForeColor = false; + this.xrLabel90.StylePriority.UseTextAlignment = false; + this.xrLabel90.Text = "Kein Berufsabschluss"; + this.xrLabel90.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox21 + // + this.xrCheckBox21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox21.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox21.LocationFloat = new DevExpress.Utils.PointFloat(3.297854F, 808.6563F); + this.xrCheckBox21.Name = "xrCheckBox21"; + this.xrCheckBox21.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrCheckBox21.StylePriority.UseBorders = false; + this.xrCheckBox21.StylePriority.UseFont = false; + this.xrCheckBox21.StylePriority.UseTextAlignment = false; + this.xrCheckBox21.Text = " "; + this.xrCheckBox21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel91 + // + this.xrLabel91.BorderColor = System.Drawing.Color.Black; + this.xrLabel91.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel91.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel91.ForeColor = System.Drawing.Color.Red; + this.xrLabel91.LocationFloat = new DevExpress.Utils.PointFloat(27.29794F, 808.6559F); + this.xrLabel91.Name = "xrLabel91"; + this.xrLabel91.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel91.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrLabel91.StylePriority.UseBorderColor = false; + this.xrLabel91.StylePriority.UseBorders = false; + this.xrLabel91.StylePriority.UseFont = false; + this.xrLabel91.StylePriority.UseForeColor = false; + this.xrLabel91.StylePriority.UseTextAlignment = false; + this.xrLabel91.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel89 + // + this.xrLabel89.BorderColor = System.Drawing.Color.Black; + this.xrLabel89.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel89.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel89.ForeColor = System.Drawing.Color.Red; + this.xrLabel89.LocationFloat = new DevExpress.Utils.PointFloat(27.29406F, 786.6559F); + this.xrLabel89.Name = "xrLabel89"; + this.xrLabel89.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel89.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrLabel89.StylePriority.UseBorderColor = false; + this.xrLabel89.StylePriority.UseBorders = false; + this.xrLabel89.StylePriority.UseFont = false; + this.xrLabel89.StylePriority.UseForeColor = false; + this.xrLabel89.StylePriority.UseTextAlignment = false; + this.xrLabel89.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel77 + // + this.xrLabel77.BorderColor = System.Drawing.Color.Black; + this.xrLabel77.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel77.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel77.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel77.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 696.9061F); + this.xrLabel77.Name = "xrLabel77"; + this.xrLabel77.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel77.SizeF = new System.Drawing.SizeF(23.99F, 21.87F); + this.xrLabel77.StylePriority.UseBorderColor = false; + this.xrLabel77.StylePriority.UseBorders = false; + this.xrLabel77.StylePriority.UseFont = false; + this.xrLabel77.StylePriority.UseForeColor = false; + this.xrLabel77.StylePriority.UseTextAlignment = false; + this.xrLabel77.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel78 + // + this.xrLabel78.BorderColor = System.Drawing.Color.Black; + this.xrLabel78.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel78.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel78.ForeColor = System.Drawing.Color.Red; + this.xrLabel78.LocationFloat = new DevExpress.Utils.PointFloat(27.2938F, 696.9064F); + this.xrLabel78.Name = "xrLabel78"; + this.xrLabel78.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel78.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel78.StylePriority.UseBorderColor = false; + this.xrLabel78.StylePriority.UseBorders = false; + this.xrLabel78.StylePriority.UseFont = false; + this.xrLabel78.StylePriority.UseForeColor = false; + this.xrLabel78.StylePriority.UseTextAlignment = false; + this.xrLabel78.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel79 + // + this.xrLabel79.BorderColor = System.Drawing.Color.Black; + this.xrLabel79.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel79.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel79.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel79.LocationFloat = new DevExpress.Utils.PointFloat(51.29366F, 696.9061F); + this.xrLabel79.Name = "xrLabel79"; + this.xrLabel79.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel79.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel79.StylePriority.UseBorderColor = false; + this.xrLabel79.StylePriority.UseBorders = false; + this.xrLabel79.StylePriority.UseFont = false; + this.xrLabel79.StylePriority.UseForeColor = false; + this.xrLabel79.StylePriority.UseTextAlignment = false; + this.xrLabel79.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel80 + // + this.xrLabel80.BorderColor = System.Drawing.Color.Black; + this.xrLabel80.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel80.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel80.ForeColor = System.Drawing.Color.Red; + this.xrLabel80.LocationFloat = new DevExpress.Utils.PointFloat(51.29379F, 718.7809F); + this.xrLabel80.Name = "xrLabel80"; + this.xrLabel80.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel80.SizeF = new System.Drawing.SizeF(270.7433F, 24F); + this.xrLabel80.StylePriority.UseBorderColor = false; + this.xrLabel80.StylePriority.UseBorders = false; + this.xrLabel80.StylePriority.UseFont = false; + this.xrLabel80.StylePriority.UseForeColor = false; + this.xrLabel80.StylePriority.UseTextAlignment = false; + this.xrLabel80.Text = "Berufssituation"; + this.xrLabel80.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel81 + // + this.xrLabel81.BorderColor = System.Drawing.Color.Black; + this.xrLabel81.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel81.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel81.ForeColor = System.Drawing.Color.Red; + this.xrLabel81.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 718.7812F); + this.xrLabel81.Name = "xrLabel81"; + this.xrLabel81.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel81.SizeF = new System.Drawing.SizeF(23.99F, 24F); + this.xrLabel81.StylePriority.UseBorderColor = false; + this.xrLabel81.StylePriority.UseBorders = false; + this.xrLabel81.StylePriority.UseFont = false; + this.xrLabel81.StylePriority.UseForeColor = false; + this.xrLabel81.StylePriority.UseTextAlignment = false; + this.xrLabel81.Text = "C."; + this.xrLabel81.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel82 + // + this.xrLabel82.BorderColor = System.Drawing.Color.Black; + this.xrLabel82.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel82.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel82.ForeColor = System.Drawing.Color.Red; + this.xrLabel82.LocationFloat = new DevExpress.Utils.PointFloat(27.29399F, 718.7812F); + this.xrLabel82.Name = "xrLabel82"; + this.xrLabel82.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel82.SizeF = new System.Drawing.SizeF(24.00002F, 24F); + this.xrLabel82.StylePriority.UseBorderColor = false; + this.xrLabel82.StylePriority.UseBorders = false; + this.xrLabel82.StylePriority.UseFont = false; + this.xrLabel82.StylePriority.UseForeColor = false; + this.xrLabel82.StylePriority.UseTextAlignment = false; + this.xrLabel82.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel83 + // + this.xrLabel83.BorderColor = System.Drawing.Color.Black; + this.xrLabel83.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel83.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel83.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel83.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 742.7813F); + this.xrLabel83.Name = "xrLabel83"; + this.xrLabel83.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel83.SizeF = new System.Drawing.SizeF(23.99F, 21.87488F); + this.xrLabel83.StylePriority.UseBorderColor = false; + this.xrLabel83.StylePriority.UseBorders = false; + this.xrLabel83.StylePriority.UseFont = false; + this.xrLabel83.StylePriority.UseForeColor = false; + this.xrLabel83.StylePriority.UseTextAlignment = false; + this.xrLabel83.Text = "1."; + this.xrLabel83.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel84 + // + this.xrLabel84.BorderColor = System.Drawing.Color.Black; + this.xrLabel84.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel84.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel84.ForeColor = System.Drawing.Color.Red; + this.xrLabel84.LocationFloat = new DevExpress.Utils.PointFloat(27.29393F, 742.7813F); + this.xrLabel84.Name = "xrLabel84"; + this.xrLabel84.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel84.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel84.StylePriority.UseBorderColor = false; + this.xrLabel84.StylePriority.UseBorders = false; + this.xrLabel84.StylePriority.UseFont = false; + this.xrLabel84.StylePriority.UseForeColor = false; + this.xrLabel84.StylePriority.UseTextAlignment = false; + this.xrLabel84.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel85 + // + this.xrLabel85.BorderColor = System.Drawing.Color.Black; + this.xrLabel85.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel85.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel85.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel85.LocationFloat = new DevExpress.Utils.PointFloat(51.29379F, 742.7813F); + this.xrLabel85.Name = "xrLabel85"; + this.xrLabel85.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel85.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel85.StylePriority.UseBorderColor = false; + this.xrLabel85.StylePriority.UseBorders = false; + this.xrLabel85.StylePriority.UseFont = false; + this.xrLabel85.StylePriority.UseForeColor = false; + this.xrLabel85.StylePriority.UseTextAlignment = false; + this.xrLabel85.Text = "Berufsausbildung"; + this.xrLabel85.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel86 + // + this.xrLabel86.BorderColor = System.Drawing.Color.Black; + this.xrLabel86.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel86.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel86.ForeColor = System.Drawing.Color.Black; + this.xrLabel86.LocationFloat = new DevExpress.Utils.PointFloat(51.29379F, 764.6561F); + this.xrLabel86.Name = "xrLabel86"; + this.xrLabel86.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel86.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel86.StylePriority.UseBorderColor = false; + this.xrLabel86.StylePriority.UseBorders = false; + this.xrLabel86.StylePriority.UseFont = false; + this.xrLabel86.StylePriority.UseForeColor = false; + this.xrLabel86.StylePriority.UseTextAlignment = false; + this.xrLabel86.Text = "Abgeschlossene Berufsausbildung"; + this.xrLabel86.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel87 + // + this.xrLabel87.BorderColor = System.Drawing.Color.Black; + this.xrLabel87.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel87.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel87.ForeColor = System.Drawing.Color.Red; + this.xrLabel87.LocationFloat = new DevExpress.Utils.PointFloat(27.29393F, 764.6561F); + this.xrLabel87.Name = "xrLabel87"; + this.xrLabel87.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel87.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrLabel87.StylePriority.UseBorderColor = false; + this.xrLabel87.StylePriority.UseBorders = false; + this.xrLabel87.StylePriority.UseFont = false; + this.xrLabel87.StylePriority.UseForeColor = false; + this.xrLabel87.StylePriority.UseTextAlignment = false; + this.xrLabel87.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox19 + // + this.xrCheckBox19.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox19.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox19.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 764.6561F); + this.xrCheckBox19.Name = "xrCheckBox19"; + this.xrCheckBox19.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox19.StylePriority.UseBorders = false; + this.xrCheckBox19.StylePriority.UseFont = false; + this.xrCheckBox19.StylePriority.UseTextAlignment = false; + this.xrCheckBox19.Text = " "; + this.xrCheckBox19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox20 + // + this.xrCheckBox20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox20.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox20.LocationFloat = new DevExpress.Utils.PointFloat(3.297398F, 786.6562F); + this.xrCheckBox20.Name = "xrCheckBox20"; + this.xrCheckBox20.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox20.StylePriority.UseBorders = false; + this.xrCheckBox20.StylePriority.UseFont = false; + this.xrCheckBox20.StylePriority.UseTextAlignment = false; + this.xrCheckBox20.Text = " "; + this.xrCheckBox20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel88 + // + this.xrLabel88.BorderColor = System.Drawing.Color.Black; + this.xrLabel88.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel88.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel88.ForeColor = System.Drawing.Color.Black; + this.xrLabel88.LocationFloat = new DevExpress.Utils.PointFloat(51.29366F, 786.6559F); + this.xrLabel88.Name = "xrLabel88"; + this.xrLabel88.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel88.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel88.StylePriority.UseBorderColor = false; + this.xrLabel88.StylePriority.UseBorders = false; + this.xrLabel88.StylePriority.UseFont = false; + this.xrLabel88.StylePriority.UseForeColor = false; + this.xrLabel88.StylePriority.UseTextAlignment = false; + this.xrLabel88.Text = "Abgeschlossenes Studium"; + this.xrLabel88.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel75 + // + this.xrLabel75.BorderColor = System.Drawing.Color.Black; + this.xrLabel75.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel75.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel75.ForeColor = System.Drawing.Color.Black; + this.xrLabel75.LocationFloat = new DevExpress.Utils.PointFloat(51.33487F, 678.9062F); + this.xrLabel75.Name = "xrLabel75"; + this.xrLabel75.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel75.SizeF = new System.Drawing.SizeF(270.692F, 18F); + this.xrLabel75.StylePriority.UseBorderColor = false; + this.xrLabel75.StylePriority.UseBorders = false; + this.xrLabel75.StylePriority.UseFont = false; + this.xrLabel75.StylePriority.UseForeColor = false; + this.xrLabel75.StylePriority.UseTextAlignment = false; + this.xrLabel75.Text = "im Elternhaus"; + this.xrLabel75.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel76 + // + this.xrLabel76.BorderColor = System.Drawing.Color.Black; + this.xrLabel76.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel76.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel76.ForeColor = System.Drawing.Color.Red; + this.xrLabel76.LocationFloat = new DevExpress.Utils.PointFloat(3.338242F, 678.9062F); + this.xrLabel76.Name = "xrLabel76"; + this.xrLabel76.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel76.SizeF = new System.Drawing.SizeF(23.99F, 17.99994F); + this.xrLabel76.StylePriority.UseBorderColor = false; + this.xrLabel76.StylePriority.UseBorders = false; + this.xrLabel76.StylePriority.UseFont = false; + this.xrLabel76.StylePriority.UseForeColor = false; + this.xrLabel76.StylePriority.UseTextAlignment = false; + this.xrLabel76.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox18 + // + this.xrCheckBox18.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox18.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox18.LocationFloat = new DevExpress.Utils.PointFloat(27.33479F, 678.9062F); + this.xrCheckBox18.Name = "xrCheckBox18"; + this.xrCheckBox18.SizeF = new System.Drawing.SizeF(24F, 17.99994F); + this.xrCheckBox18.StylePriority.UseBorders = false; + this.xrCheckBox18.StylePriority.UseFont = false; + this.xrCheckBox18.StylePriority.UseTextAlignment = false; + this.xrCheckBox18.Text = " "; + this.xrCheckBox18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox17 + // + this.xrCheckBox17.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox17.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox17.LocationFloat = new DevExpress.Utils.PointFloat(27.31421F, 660.9066F); + this.xrCheckBox17.Name = "xrCheckBox17"; + this.xrCheckBox17.SizeF = new System.Drawing.SizeF(24F, 18F); + this.xrCheckBox17.StylePriority.UseBorders = false; + this.xrCheckBox17.StylePriority.UseFont = false; + this.xrCheckBox17.StylePriority.UseTextAlignment = false; + this.xrCheckBox17.Text = " "; + this.xrCheckBox17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel71 + // + this.xrLabel71.BorderColor = System.Drawing.Color.Black; + this.xrLabel71.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel71.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel71.ForeColor = System.Drawing.Color.Black; + this.xrLabel71.LocationFloat = new DevExpress.Utils.PointFloat(51.31081F, 642.9059F); + this.xrLabel71.Name = "xrLabel71"; + this.xrLabel71.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel71.SizeF = new System.Drawing.SizeF(270.692F, 17.99994F); + this.xrLabel71.StylePriority.UseBorderColor = false; + this.xrLabel71.StylePriority.UseBorders = false; + this.xrLabel71.StylePriority.UseFont = false; + this.xrLabel71.StylePriority.UseForeColor = false; + this.xrLabel71.StylePriority.UseTextAlignment = false; + this.xrLabel71.Text = "alleinerziehend mit Kind/ern"; + this.xrLabel71.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel72 + // + this.xrLabel72.BorderColor = System.Drawing.Color.Black; + this.xrLabel72.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel72.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel72.ForeColor = System.Drawing.Color.Red; + this.xrLabel72.LocationFloat = new DevExpress.Utils.PointFloat(3.324427F, 642.9059F); + this.xrLabel72.Name = "xrLabel72"; + this.xrLabel72.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel72.SizeF = new System.Drawing.SizeF(23.98F, 18F); + this.xrLabel72.StylePriority.UseBorderColor = false; + this.xrLabel72.StylePriority.UseBorders = false; + this.xrLabel72.StylePriority.UseFont = false; + this.xrLabel72.StylePriority.UseForeColor = false; + this.xrLabel72.StylePriority.UseTextAlignment = false; + this.xrLabel72.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel73 + // + this.xrLabel73.BorderColor = System.Drawing.Color.Black; + this.xrLabel73.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel73.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel73.ForeColor = System.Drawing.Color.Red; + this.xrLabel73.LocationFloat = new DevExpress.Utils.PointFloat(3.324445F, 660.9066F); + this.xrLabel73.Name = "xrLabel73"; + this.xrLabel73.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel73.SizeF = new System.Drawing.SizeF(23.99F, 17.99957F); + this.xrLabel73.StylePriority.UseBorderColor = false; + this.xrLabel73.StylePriority.UseBorders = false; + this.xrLabel73.StylePriority.UseFont = false; + this.xrLabel73.StylePriority.UseForeColor = false; + this.xrLabel73.StylePriority.UseTextAlignment = false; + this.xrLabel73.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel74 + // + this.xrLabel74.BorderColor = System.Drawing.Color.Black; + this.xrLabel74.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel74.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel74.ForeColor = System.Drawing.Color.Black; + this.xrLabel74.LocationFloat = new DevExpress.Utils.PointFloat(51.31436F, 660.9063F); + this.xrLabel74.Name = "xrLabel74"; + this.xrLabel74.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel74.SizeF = new System.Drawing.SizeF(270.692F, 18F); + this.xrLabel74.StylePriority.UseBorderColor = false; + this.xrLabel74.StylePriority.UseBorders = false; + this.xrLabel74.StylePriority.UseFont = false; + this.xrLabel74.StylePriority.UseForeColor = false; + this.xrLabel74.StylePriority.UseTextAlignment = false; + this.xrLabel74.Text = "in Wohngemeinschaft"; + this.xrLabel74.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox16 + // + this.xrCheckBox16.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox16.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox16.LocationFloat = new DevExpress.Utils.PointFloat(27.31082F, 642.9067F); + this.xrCheckBox16.Name = "xrCheckBox16"; + this.xrCheckBox16.SizeF = new System.Drawing.SizeF(24F, 18F); + this.xrCheckBox16.StylePriority.UseBorders = false; + this.xrCheckBox16.StylePriority.UseFont = false; + this.xrCheckBox16.StylePriority.UseTextAlignment = false; + this.xrCheckBox16.Text = " "; + this.xrCheckBox16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox14 + // + this.xrCheckBox14.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox14.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox14.LocationFloat = new DevExpress.Utils.PointFloat(27.21101F, 606.9062F); + this.xrCheckBox14.Name = "xrCheckBox14"; + this.xrCheckBox14.SizeF = new System.Drawing.SizeF(24F, 18F); + this.xrCheckBox14.StylePriority.UseBorders = false; + this.xrCheckBox14.StylePriority.UseFont = false; + this.xrCheckBox14.StylePriority.UseTextAlignment = false; + this.xrCheckBox14.Text = " "; + this.xrCheckBox14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel67 + // + this.xrLabel67.BorderColor = System.Drawing.Color.Black; + this.xrLabel67.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel67.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel67.ForeColor = System.Drawing.Color.Black; + this.xrLabel67.LocationFloat = new DevExpress.Utils.PointFloat(51.235F, 624.9058F); + this.xrLabel67.Name = "xrLabel67"; + this.xrLabel67.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel67.SizeF = new System.Drawing.SizeF(270.6885F, 18.00006F); + this.xrLabel67.StylePriority.UseBorderColor = false; + this.xrLabel67.StylePriority.UseBorders = false; + this.xrLabel67.StylePriority.UseFont = false; + this.xrLabel67.StylePriority.UseForeColor = false; + this.xrLabel67.StylePriority.UseTextAlignment = false; + this.xrLabel67.Text = "mit Partner/in und Kind/ern"; + this.xrLabel67.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel68 + // + this.xrLabel68.BorderColor = System.Drawing.Color.Black; + this.xrLabel68.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel68.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel68.ForeColor = System.Drawing.Color.Red; + this.xrLabel68.LocationFloat = new DevExpress.Utils.PointFloat(3.242167F, 624.9058F); + this.xrLabel68.Name = "xrLabel68"; + this.xrLabel68.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel68.SizeF = new System.Drawing.SizeF(23.56671F, 18F); + this.xrLabel68.StylePriority.UseBorderColor = false; + this.xrLabel68.StylePriority.UseBorders = false; + this.xrLabel68.StylePriority.UseFont = false; + this.xrLabel68.StylePriority.UseForeColor = false; + this.xrLabel68.StylePriority.UseTextAlignment = false; + this.xrLabel68.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel69 + // + this.xrLabel69.BorderColor = System.Drawing.Color.Black; + this.xrLabel69.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel69.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel69.ForeColor = System.Drawing.Color.Red; + this.xrLabel69.LocationFloat = new DevExpress.Utils.PointFloat(3.218247F, 606.9059F); + this.xrLabel69.Name = "xrLabel69"; + this.xrLabel69.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel69.SizeF = new System.Drawing.SizeF(23.99F, 18F); + this.xrLabel69.StylePriority.UseBorderColor = false; + this.xrLabel69.StylePriority.UseBorders = false; + this.xrLabel69.StylePriority.UseFont = false; + this.xrLabel69.StylePriority.UseForeColor = false; + this.xrLabel69.StylePriority.UseTextAlignment = false; + this.xrLabel69.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel70 + // + this.xrLabel70.BorderColor = System.Drawing.Color.Black; + this.xrLabel70.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel70.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel70.ForeColor = System.Drawing.Color.Black; + this.xrLabel70.LocationFloat = new DevExpress.Utils.PointFloat(51.21121F, 606.9059F); + this.xrLabel70.Name = "xrLabel70"; + this.xrLabel70.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel70.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel70.StylePriority.UseBorderColor = false; + this.xrLabel70.StylePriority.UseBorders = false; + this.xrLabel70.StylePriority.UseFont = false; + this.xrLabel70.StylePriority.UseForeColor = false; + this.xrLabel70.StylePriority.UseTextAlignment = false; + this.xrLabel70.Text = "mit Partner/in"; + this.xrLabel70.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox15 + // + this.xrCheckBox15.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox15.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox15.LocationFloat = new DevExpress.Utils.PointFloat(27.23518F, 624.9062F); + this.xrCheckBox15.Name = "xrCheckBox15"; + this.xrCheckBox15.SizeF = new System.Drawing.SizeF(24F, 17.99963F); + this.xrCheckBox15.StylePriority.UseBorders = false; + this.xrCheckBox15.StylePriority.UseFont = false; + this.xrCheckBox15.StylePriority.UseTextAlignment = false; + this.xrCheckBox15.Text = " "; + this.xrCheckBox15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel60 + // + this.xrLabel60.BorderColor = System.Drawing.Color.Black; + this.xrLabel60.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel60.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel60.ForeColor = System.Drawing.Color.Red; + this.xrLabel60.LocationFloat = new DevExpress.Utils.PointFloat(27.21133F, 541.0309F); + this.xrLabel60.Name = "xrLabel60"; + this.xrLabel60.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel60.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel60.StylePriority.UseBorderColor = false; + this.xrLabel60.StylePriority.UseBorders = false; + this.xrLabel60.StylePriority.UseFont = false; + this.xrLabel60.StylePriority.UseForeColor = false; + this.xrLabel60.StylePriority.UseTextAlignment = false; + this.xrLabel60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel61 + // + this.xrLabel61.BorderColor = System.Drawing.Color.Black; + this.xrLabel61.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel61.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel61.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel61.LocationFloat = new DevExpress.Utils.PointFloat(3.218247F, 541.0309F); + this.xrLabel61.Name = "xrLabel61"; + this.xrLabel61.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel61.SizeF = new System.Drawing.SizeF(23.99F, 21.87F); + this.xrLabel61.StylePriority.UseBorderColor = false; + this.xrLabel61.StylePriority.UseBorders = false; + this.xrLabel61.StylePriority.UseFont = false; + this.xrLabel61.StylePriority.UseForeColor = false; + this.xrLabel61.StylePriority.UseTextAlignment = false; + this.xrLabel61.Text = "2."; + this.xrLabel61.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel62 + // + this.xrLabel62.BorderColor = System.Drawing.Color.Black; + this.xrLabel62.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel62.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel62.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel62.LocationFloat = new DevExpress.Utils.PointFloat(51.2114F, 541.0309F); + this.xrLabel62.Name = "xrLabel62"; + this.xrLabel62.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel62.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel62.StylePriority.UseBorderColor = false; + this.xrLabel62.StylePriority.UseBorders = false; + this.xrLabel62.StylePriority.UseFont = false; + this.xrLabel62.StylePriority.UseForeColor = false; + this.xrLabel62.StylePriority.UseTextAlignment = false; + this.xrLabel62.Text = "Wohnform"; + this.xrLabel62.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // chkBoxEinpersonenhh + // + this.chkBoxEinpersonenhh.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.chkBoxEinpersonenhh.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.chkBoxEinpersonenhh.LocationFloat = new DevExpress.Utils.PointFloat(3.218247F, 562.906F); + this.chkBoxEinpersonenhh.Name = "chkBoxEinpersonenhh"; + this.chkBoxEinpersonenhh.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.chkBoxEinpersonenhh.StylePriority.UseBorders = false; + this.chkBoxEinpersonenhh.StylePriority.UseFont = false; + this.chkBoxEinpersonenhh.StylePriority.UseTextAlignment = false; + this.chkBoxEinpersonenhh.Text = " "; + this.chkBoxEinpersonenhh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel64 + // + this.xrLabel64.BorderColor = System.Drawing.Color.Black; + this.xrLabel64.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel64.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel64.ForeColor = System.Drawing.Color.Red; + this.xrLabel64.LocationFloat = new DevExpress.Utils.PointFloat(27.21133F, 562.906F); + this.xrLabel64.Name = "xrLabel64"; + this.xrLabel64.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel64.SizeF = new System.Drawing.SizeF(23.97227F, 22F); + this.xrLabel64.StylePriority.UseBorderColor = false; + this.xrLabel64.StylePriority.UseBorders = false; + this.xrLabel64.StylePriority.UseFont = false; + this.xrLabel64.StylePriority.UseForeColor = false; + this.xrLabel64.StylePriority.UseTextAlignment = false; + this.xrLabel64.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel65 + // + this.xrLabel65.BorderColor = System.Drawing.Color.Black; + this.xrLabel65.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel65.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel65.ForeColor = System.Drawing.Color.Red; + this.xrLabel65.LocationFloat = new DevExpress.Utils.PointFloat(27.21127F, 584.9058F); + this.xrLabel65.Name = "xrLabel65"; + this.xrLabel65.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel65.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel65.StylePriority.UseBorderColor = false; + this.xrLabel65.StylePriority.UseBorders = false; + this.xrLabel65.StylePriority.UseFont = false; + this.xrLabel65.StylePriority.UseForeColor = false; + this.xrLabel65.StylePriority.UseTextAlignment = false; + this.xrLabel65.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel66 + // + this.xrLabel66.BorderColor = System.Drawing.Color.Black; + this.xrLabel66.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel66.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel66.ForeColor = System.Drawing.Color.Black; + this.xrLabel66.LocationFloat = new DevExpress.Utils.PointFloat(51.21134F, 584.9058F); + this.xrLabel66.Name = "xrLabel66"; + this.xrLabel66.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel66.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel66.StylePriority.UseBorderColor = false; + this.xrLabel66.StylePriority.UseBorders = false; + this.xrLabel66.StylePriority.UseFont = false; + this.xrLabel66.StylePriority.UseForeColor = false; + this.xrLabel66.StylePriority.UseTextAlignment = false; + this.xrLabel66.Text = "Mehrpersonenhaushalt"; + this.xrLabel66.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // chkBoxMehrpersonenhh + // + this.chkBoxMehrpersonenhh.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.chkBoxMehrpersonenhh.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.chkBoxMehrpersonenhh.LocationFloat = new DevExpress.Utils.PointFloat(3.218247F, 584.9058F); + this.chkBoxMehrpersonenhh.Name = "chkBoxMehrpersonenhh"; + this.chkBoxMehrpersonenhh.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.chkBoxMehrpersonenhh.StylePriority.UseBorders = false; + this.chkBoxMehrpersonenhh.StylePriority.UseFont = false; + this.chkBoxMehrpersonenhh.StylePriority.UseTextAlignment = false; + this.chkBoxMehrpersonenhh.Text = " "; + this.chkBoxMehrpersonenhh.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox11 + // + this.xrCheckBox11.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox11.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox11.LocationFloat = new DevExpress.Utils.PointFloat(3.218247F, 519.0311F); + this.xrCheckBox11.Name = "xrCheckBox11"; + this.xrCheckBox11.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox11.StylePriority.UseBorders = false; + this.xrCheckBox11.StylePriority.UseFont = false; + this.xrCheckBox11.StylePriority.UseTextAlignment = false; + this.xrCheckBox11.Text = " "; + this.xrCheckBox11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel58 + // + this.xrLabel58.BorderColor = System.Drawing.Color.Black; + this.xrLabel58.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel58.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel58.ForeColor = System.Drawing.Color.Black; + this.xrLabel58.LocationFloat = new DevExpress.Utils.PointFloat(51.21134F, 519.0311F); + this.xrLabel58.Name = "xrLabel58"; + this.xrLabel58.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel58.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel58.StylePriority.UseBorderColor = false; + this.xrLabel58.StylePriority.UseBorders = false; + this.xrLabel58.StylePriority.UseFont = false; + this.xrLabel58.StylePriority.UseForeColor = false; + this.xrLabel58.StylePriority.UseTextAlignment = false; + this.xrLabel58.Text = "Landkreis Ansbach"; + this.xrLabel58.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel59 + // + this.xrLabel59.BorderColor = System.Drawing.Color.Black; + this.xrLabel59.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel59.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel59.ForeColor = System.Drawing.Color.Red; + this.xrLabel59.LocationFloat = new DevExpress.Utils.PointFloat(27.21114F, 519.0311F); + this.xrLabel59.Name = "xrLabel59"; + this.xrLabel59.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel59.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel59.StylePriority.UseBorderColor = false; + this.xrLabel59.StylePriority.UseBorders = false; + this.xrLabel59.StylePriority.UseFont = false; + this.xrLabel59.StylePriority.UseForeColor = false; + this.xrLabel59.StylePriority.UseTextAlignment = false; + this.xrLabel59.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel50 + // + this.xrLabel50.BorderColor = System.Drawing.Color.Black; + this.xrLabel50.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel50.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel50.ForeColor = System.Drawing.Color.Red; + this.xrLabel50.LocationFloat = new DevExpress.Utils.PointFloat(27.21127F, 497.031F); + this.xrLabel50.Name = "xrLabel50"; + this.xrLabel50.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel50.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel50.StylePriority.UseBorderColor = false; + this.xrLabel50.StylePriority.UseBorders = false; + this.xrLabel50.StylePriority.UseFont = false; + this.xrLabel50.StylePriority.UseForeColor = false; + this.xrLabel50.StylePriority.UseTextAlignment = false; + this.xrLabel50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel51 + // + this.xrLabel51.BorderColor = System.Drawing.Color.Black; + this.xrLabel51.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel51.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel51.ForeColor = System.Drawing.Color.Black; + this.xrLabel51.LocationFloat = new DevExpress.Utils.PointFloat(51.21134F, 497.031F); + this.xrLabel51.Name = "xrLabel51"; + this.xrLabel51.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel51.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel51.StylePriority.UseBorderColor = false; + this.xrLabel51.StylePriority.UseBorders = false; + this.xrLabel51.StylePriority.UseFont = false; + this.xrLabel51.StylePriority.UseForeColor = false; + this.xrLabel51.StylePriority.UseTextAlignment = false; + this.xrLabel51.Text = "Stadt Ansbach"; + this.xrLabel51.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox10 + // + this.xrCheckBox10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox10.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox10.LocationFloat = new DevExpress.Utils.PointFloat(3.218247F, 497.031F); + this.xrCheckBox10.Name = "xrCheckBox10"; + this.xrCheckBox10.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox10.StylePriority.UseBorders = false; + this.xrCheckBox10.StylePriority.UseFont = false; + this.xrCheckBox10.StylePriority.UseTextAlignment = false; + this.xrCheckBox10.Text = " "; + this.xrCheckBox10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel52 + // + this.xrLabel52.BorderColor = System.Drawing.Color.Black; + this.xrLabel52.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel52.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel52.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel52.LocationFloat = new DevExpress.Utils.PointFloat(51.2114F, 475.1561F); + this.xrLabel52.Name = "xrLabel52"; + this.xrLabel52.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel52.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel52.StylePriority.UseBorderColor = false; + this.xrLabel52.StylePriority.UseBorders = false; + this.xrLabel52.StylePriority.UseFont = false; + this.xrLabel52.StylePriority.UseForeColor = false; + this.xrLabel52.StylePriority.UseTextAlignment = false; + this.xrLabel52.Text = "Wohnort"; + this.xrLabel52.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel53 + // + this.xrLabel53.BorderColor = System.Drawing.Color.Black; + this.xrLabel53.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel53.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel53.LocationFloat = new DevExpress.Utils.PointFloat(3.218247F, 475.1561F); + this.xrLabel53.Name = "xrLabel53"; + this.xrLabel53.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel53.SizeF = new System.Drawing.SizeF(23.99F, 21.87F); + this.xrLabel53.StylePriority.UseBorderColor = false; + this.xrLabel53.StylePriority.UseBorders = false; + this.xrLabel53.StylePriority.UseFont = false; + this.xrLabel53.StylePriority.UseForeColor = false; + this.xrLabel53.StylePriority.UseTextAlignment = false; + this.xrLabel53.Text = "1."; + this.xrLabel53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel54 + // + this.xrLabel54.BorderColor = System.Drawing.Color.Black; + this.xrLabel54.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel54.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel54.ForeColor = System.Drawing.Color.Red; + this.xrLabel54.LocationFloat = new DevExpress.Utils.PointFloat(27.21127F, 475.1561F); + this.xrLabel54.Name = "xrLabel54"; + this.xrLabel54.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel54.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel54.StylePriority.UseBorderColor = false; + this.xrLabel54.StylePriority.UseBorders = false; + this.xrLabel54.StylePriority.UseFont = false; + this.xrLabel54.StylePriority.UseForeColor = false; + this.xrLabel54.StylePriority.UseTextAlignment = false; + this.xrLabel54.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel55 + // + this.xrLabel55.BorderColor = System.Drawing.Color.Black; + this.xrLabel55.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel55.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel55.ForeColor = System.Drawing.Color.Red; + this.xrLabel55.LocationFloat = new DevExpress.Utils.PointFloat(27.21133F, 451.1561F); + this.xrLabel55.Name = "xrLabel55"; + this.xrLabel55.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel55.SizeF = new System.Drawing.SizeF(24.00002F, 24F); + this.xrLabel55.StylePriority.UseBorderColor = false; + this.xrLabel55.StylePriority.UseBorders = false; + this.xrLabel55.StylePriority.UseFont = false; + this.xrLabel55.StylePriority.UseForeColor = false; + this.xrLabel55.StylePriority.UseTextAlignment = false; + this.xrLabel55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel56 + // + this.xrLabel56.BorderColor = System.Drawing.Color.Black; + this.xrLabel56.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel56.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel56.ForeColor = System.Drawing.Color.Red; + this.xrLabel56.LocationFloat = new DevExpress.Utils.PointFloat(3.218247F, 451.1561F); + this.xrLabel56.Name = "xrLabel56"; + this.xrLabel56.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel56.SizeF = new System.Drawing.SizeF(23.99F, 24F); + this.xrLabel56.StylePriority.UseBorderColor = false; + this.xrLabel56.StylePriority.UseBorders = false; + this.xrLabel56.StylePriority.UseFont = false; + this.xrLabel56.StylePriority.UseForeColor = false; + this.xrLabel56.StylePriority.UseTextAlignment = false; + this.xrLabel56.Text = "B."; + this.xrLabel56.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel57 + // + this.xrLabel57.BorderColor = System.Drawing.Color.Black; + this.xrLabel57.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel57.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel57.ForeColor = System.Drawing.Color.Red; + this.xrLabel57.LocationFloat = new DevExpress.Utils.PointFloat(51.2114F, 451.1561F); + this.xrLabel57.Name = "xrLabel57"; + this.xrLabel57.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel57.SizeF = new System.Drawing.SizeF(270.7433F, 24F); + this.xrLabel57.StylePriority.UseBorderColor = false; + this.xrLabel57.StylePriority.UseBorders = false; + this.xrLabel57.StylePriority.UseFont = false; + this.xrLabel57.StylePriority.UseForeColor = false; + this.xrLabel57.StylePriority.UseTextAlignment = false; + this.xrLabel57.Text = "Wohnsituation"; + this.xrLabel57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel2 + // + this.xrLabel2.BorderColor = System.Drawing.Color.Black; + this.xrLabel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel2.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(3.218247F, 429.2812F); + this.xrLabel2.Name = "xrLabel2"; + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel2.SizeF = new System.Drawing.SizeF(23.99F, 21.87F); + this.xrLabel2.StylePriority.UseBorderColor = false; + this.xrLabel2.StylePriority.UseBorders = false; + this.xrLabel2.StylePriority.UseFont = false; + this.xrLabel2.StylePriority.UseForeColor = false; + this.xrLabel2.StylePriority.UseTextAlignment = false; + this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel3 + // + this.xrLabel3.BorderColor = System.Drawing.Color.Black; + this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel3.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel3.ForeColor = System.Drawing.Color.Red; + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(27.21114F, 429.2812F); + this.xrLabel3.Name = "xrLabel3"; + this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel3.StylePriority.UseBorderColor = false; + this.xrLabel3.StylePriority.UseBorders = false; + this.xrLabel3.StylePriority.UseFont = false; + this.xrLabel3.StylePriority.UseForeColor = false; + this.xrLabel3.StylePriority.UseTextAlignment = false; + this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel4 + // + this.xrLabel4.BorderColor = System.Drawing.Color.Black; + this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel4.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(51.21134F, 429.2812F); + this.xrLabel4.Name = "xrLabel4"; + this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel4.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel4.StylePriority.UseBorderColor = false; + this.xrLabel4.StylePriority.UseBorders = false; + this.xrLabel4.StylePriority.UseFont = false; + this.xrLabel4.StylePriority.UseForeColor = false; + this.xrLabel4.StylePriority.UseTextAlignment = false; + this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel46 + // + this.xrLabel46.BorderColor = System.Drawing.Color.Black; + this.xrLabel46.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel46.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel46.ForeColor = System.Drawing.Color.Red; + this.xrLabel46.LocationFloat = new DevExpress.Utils.PointFloat(27.22478F, 385.2813F); + this.xrLabel46.Name = "xrLabel46"; + this.xrLabel46.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel46.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel46.StylePriority.UseBorderColor = false; + this.xrLabel46.StylePriority.UseBorders = false; + this.xrLabel46.StylePriority.UseFont = false; + this.xrLabel46.StylePriority.UseForeColor = false; + this.xrLabel46.StylePriority.UseTextAlignment = false; + this.xrLabel46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel47 + // + this.xrLabel47.BorderColor = System.Drawing.Color.Black; + this.xrLabel47.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel47.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel47.ForeColor = System.Drawing.Color.Black; + this.xrLabel47.LocationFloat = new DevExpress.Utils.PointFloat(51.22479F, 385.2813F); + this.xrLabel47.Name = "xrLabel47"; + this.xrLabel47.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel47.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel47.StylePriority.UseBorderColor = false; + this.xrLabel47.StylePriority.UseBorders = false; + this.xrLabel47.StylePriority.UseFont = false; + this.xrLabel47.StylePriority.UseForeColor = false; + this.xrLabel47.StylePriority.UseTextAlignment = false; + this.xrLabel47.Text = "mit Migrationshintergrund"; + this.xrLabel47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox8 + // + this.xrCheckBox8.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox8.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox8.LocationFloat = new DevExpress.Utils.PointFloat(3.23163F, 385.2813F); + this.xrCheckBox8.Name = "xrCheckBox8"; + this.xrCheckBox8.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox8.StylePriority.UseBorders = false; + this.xrCheckBox8.StylePriority.UseFont = false; + this.xrCheckBox8.StylePriority.UseTextAlignment = false; + this.xrCheckBox8.Text = " "; + this.xrCheckBox8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel48 + // + this.xrLabel48.BorderColor = System.Drawing.Color.Black; + this.xrLabel48.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel48.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel48.ForeColor = System.Drawing.Color.Red; + this.xrLabel48.LocationFloat = new DevExpress.Utils.PointFloat(27.23493F, 407.2814F); + this.xrLabel48.Name = "xrLabel48"; + this.xrLabel48.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel48.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel48.StylePriority.UseBorderColor = false; + this.xrLabel48.StylePriority.UseBorders = false; + this.xrLabel48.StylePriority.UseFont = false; + this.xrLabel48.StylePriority.UseForeColor = false; + this.xrLabel48.StylePriority.UseTextAlignment = false; + this.xrLabel48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel49 + // + this.xrLabel49.BorderColor = System.Drawing.Color.Black; + this.xrLabel49.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel49.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel49.ForeColor = System.Drawing.Color.Black; + this.xrLabel49.LocationFloat = new DevExpress.Utils.PointFloat(51.23507F, 407.2814F); + this.xrLabel49.Name = "xrLabel49"; + this.xrLabel49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel49.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel49.StylePriority.UseBorderColor = false; + this.xrLabel49.StylePriority.UseBorders = false; + this.xrLabel49.StylePriority.UseFont = false; + this.xrLabel49.StylePriority.UseForeColor = false; + this.xrLabel49.StylePriority.UseTextAlignment = false; + this.xrLabel49.Text = "ohne Migrationshintergrund"; + this.xrLabel49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox9 + // + this.xrCheckBox9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox9.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox9.LocationFloat = new DevExpress.Utils.PointFloat(3.235122F, 407.2814F); + this.xrCheckBox9.Name = "xrCheckBox9"; + this.xrCheckBox9.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox9.StylePriority.UseBorders = false; + this.xrCheckBox9.StylePriority.UseFont = false; + this.xrCheckBox9.StylePriority.UseTextAlignment = false; + this.xrCheckBox9.Text = " "; + this.xrCheckBox9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox7 + // + this.xrCheckBox7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox7.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox7.LocationFloat = new DevExpress.Utils.PointFloat(3.231695F, 341.4061F); + this.xrCheckBox7.Name = "xrCheckBox7"; + this.xrCheckBox7.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox7.StylePriority.UseBorders = false; + this.xrCheckBox7.StylePriority.UseFont = false; + this.xrCheckBox7.StylePriority.UseTextAlignment = false; + this.xrCheckBox7.Text = " "; + this.xrCheckBox7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel26 + // + this.xrLabel26.BorderColor = System.Drawing.Color.Black; + this.xrLabel26.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel26.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel26.ForeColor = System.Drawing.Color.Black; + this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(51.23164F, 341.4061F); + this.xrLabel26.Name = "xrLabel26"; + this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel26.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel26.StylePriority.UseBorderColor = false; + this.xrLabel26.StylePriority.UseBorders = false; + this.xrLabel26.StylePriority.UseFont = false; + this.xrLabel26.StylePriority.UseForeColor = false; + this.xrLabel26.StylePriority.UseTextAlignment = false; + this.xrLabel26.Text = "verwitwet"; + this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel27 + // + this.xrLabel27.BorderColor = System.Drawing.Color.Black; + this.xrLabel27.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel27.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel27.ForeColor = System.Drawing.Color.Red; + this.xrLabel27.LocationFloat = new DevExpress.Utils.PointFloat(27.23157F, 341.4061F); + this.xrLabel27.Name = "xrLabel27"; + this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel27.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel27.StylePriority.UseBorderColor = false; + this.xrLabel27.StylePriority.UseBorders = false; + this.xrLabel27.StylePriority.UseFont = false; + this.xrLabel27.StylePriority.UseForeColor = false; + this.xrLabel27.StylePriority.UseTextAlignment = false; + this.xrLabel27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel29 + // + this.xrLabel29.BorderColor = System.Drawing.Color.Black; + this.xrLabel29.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel29.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(51.22479F, 363.4064F); + this.xrLabel29.Name = "xrLabel29"; + this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel29.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel29.StylePriority.UseBorderColor = false; + this.xrLabel29.StylePriority.UseBorders = false; + this.xrLabel29.StylePriority.UseFont = false; + this.xrLabel29.StylePriority.UseForeColor = false; + this.xrLabel29.StylePriority.UseTextAlignment = false; + this.xrLabel29.Text = "Migrationshintergrund"; + this.xrLabel29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel30 + // + this.xrLabel30.BorderColor = System.Drawing.Color.Black; + this.xrLabel30.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel30.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel30.ForeColor = System.Drawing.Color.Red; + this.xrLabel30.LocationFloat = new DevExpress.Utils.PointFloat(27.22465F, 363.4064F); + this.xrLabel30.Name = "xrLabel30"; + this.xrLabel30.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel30.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel30.StylePriority.UseBorderColor = false; + this.xrLabel30.StylePriority.UseBorders = false; + this.xrLabel30.StylePriority.UseFont = false; + this.xrLabel30.StylePriority.UseForeColor = false; + this.xrLabel30.StylePriority.UseTextAlignment = false; + this.xrLabel30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel31 + // + this.xrLabel31.BorderColor = System.Drawing.Color.Black; + this.xrLabel31.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel31.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel31.LocationFloat = new DevExpress.Utils.PointFloat(3.23163F, 363.4064F); + this.xrLabel31.Name = "xrLabel31"; + this.xrLabel31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel31.SizeF = new System.Drawing.SizeF(23.99F, 21.87F); + this.xrLabel31.StylePriority.UseBorderColor = false; + this.xrLabel31.StylePriority.UseBorders = false; + this.xrLabel31.StylePriority.UseFont = false; + this.xrLabel31.StylePriority.UseForeColor = false; + this.xrLabel31.StylePriority.UseTextAlignment = false; + this.xrLabel31.Text = "4."; + this.xrLabel31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel15 + // + this.xrLabel15.BorderColor = System.Drawing.Color.Black; + this.xrLabel15.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel15.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel15.ForeColor = System.Drawing.Color.Red; + this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(27.22485F, 253.5312F); + this.xrLabel15.Name = "xrLabel15"; + this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel15.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel15.StylePriority.UseBorderColor = false; + this.xrLabel15.StylePriority.UseBorders = false; + this.xrLabel15.StylePriority.UseFont = false; + this.xrLabel15.StylePriority.UseForeColor = false; + this.xrLabel15.StylePriority.UseTextAlignment = false; + this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel16 + // + this.xrLabel16.BorderColor = System.Drawing.Color.Black; + this.xrLabel16.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel16.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(3.224906F, 253.5312F); + this.xrLabel16.Name = "xrLabel16"; + this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel16.SizeF = new System.Drawing.SizeF(24F, 21.87494F); + this.xrLabel16.StylePriority.UseBorderColor = false; + this.xrLabel16.StylePriority.UseBorders = false; + this.xrLabel16.StylePriority.UseFont = false; + this.xrLabel16.StylePriority.UseForeColor = false; + this.xrLabel16.StylePriority.UseTextAlignment = false; + this.xrLabel16.Text = "3."; + this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel17 + // + this.xrLabel17.BorderColor = System.Drawing.Color.Black; + this.xrLabel17.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel17.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(51.22492F, 253.5312F); + this.xrLabel17.Name = "xrLabel17"; + this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel17.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel17.StylePriority.UseBorderColor = false; + this.xrLabel17.StylePriority.UseBorders = false; + this.xrLabel17.StylePriority.UseFont = false; + this.xrLabel17.StylePriority.UseForeColor = false; + this.xrLabel17.StylePriority.UseTextAlignment = false; + this.xrLabel17.Text = "Familienstand"; + this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox4 + // + this.xrCheckBox4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox4.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox4.LocationFloat = new DevExpress.Utils.PointFloat(3.224906F, 275.4061F); + this.xrCheckBox4.Name = "xrCheckBox4"; + this.xrCheckBox4.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox4.StylePriority.UseBorders = false; + this.xrCheckBox4.StylePriority.UseFont = false; + this.xrCheckBox4.StylePriority.UseTextAlignment = false; + this.xrCheckBox4.Text = " "; + this.xrCheckBox4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel18 + // + this.xrLabel18.BorderColor = System.Drawing.Color.Black; + this.xrLabel18.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel18.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel18.ForeColor = System.Drawing.Color.Black; + this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(51.22485F, 275.4061F); + this.xrLabel18.Name = "xrLabel18"; + this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel18.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel18.StylePriority.UseBorderColor = false; + this.xrLabel18.StylePriority.UseBorders = false; + this.xrLabel18.StylePriority.UseFont = false; + this.xrLabel18.StylePriority.UseForeColor = false; + this.xrLabel18.StylePriority.UseTextAlignment = false; + this.xrLabel18.Text = "ledig"; + this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel19 + // + this.xrLabel19.BorderColor = System.Drawing.Color.Black; + this.xrLabel19.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel19.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel19.ForeColor = System.Drawing.Color.Red; + this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(27.22485F, 275.4061F); + this.xrLabel19.Name = "xrLabel19"; + this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel19.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel19.StylePriority.UseBorderColor = false; + this.xrLabel19.StylePriority.UseBorders = false; + this.xrLabel19.StylePriority.UseFont = false; + this.xrLabel19.StylePriority.UseForeColor = false; + this.xrLabel19.StylePriority.UseTextAlignment = false; + this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel20 + // + this.xrLabel20.BorderColor = System.Drawing.Color.Black; + this.xrLabel20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel20.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel20.ForeColor = System.Drawing.Color.Red; + this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(27.22136F, 297.4059F); + this.xrLabel20.Name = "xrLabel20"; + this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel20.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel20.StylePriority.UseBorderColor = false; + this.xrLabel20.StylePriority.UseBorders = false; + this.xrLabel20.StylePriority.UseFont = false; + this.xrLabel20.StylePriority.UseForeColor = false; + this.xrLabel20.StylePriority.UseTextAlignment = false; + this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel22 + // + this.xrLabel22.BorderColor = System.Drawing.Color.Black; + this.xrLabel22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel22.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel22.ForeColor = System.Drawing.Color.Black; + this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(51.22136F, 297.4059F); + this.xrLabel22.Name = "xrLabel22"; + this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel22.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel22.StylePriority.UseBorderColor = false; + this.xrLabel22.StylePriority.UseBorders = false; + this.xrLabel22.StylePriority.UseFont = false; + this.xrLabel22.StylePriority.UseForeColor = false; + this.xrLabel22.StylePriority.UseTextAlignment = false; + this.xrLabel22.Text = "verheiratet"; + this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox5 + // + this.xrCheckBox5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox5.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox5.LocationFloat = new DevExpress.Utils.PointFloat(3.224906F, 297.4059F); + this.xrCheckBox5.Name = "xrCheckBox5"; + this.xrCheckBox5.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox5.StylePriority.UseBorders = false; + this.xrCheckBox5.StylePriority.UseFont = false; + this.xrCheckBox5.StylePriority.UseTextAlignment = false; + this.xrCheckBox5.Text = " "; + this.xrCheckBox5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox6 + // + this.xrCheckBox6.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox6.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox6.LocationFloat = new DevExpress.Utils.PointFloat(3.224906F, 319.4063F); + this.xrCheckBox6.Name = "xrCheckBox6"; + this.xrCheckBox6.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox6.StylePriority.UseBorders = false; + this.xrCheckBox6.StylePriority.UseFont = false; + this.xrCheckBox6.StylePriority.UseTextAlignment = false; + this.xrCheckBox6.Text = " "; + this.xrCheckBox6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel23 + // + this.xrLabel23.BorderColor = System.Drawing.Color.Black; + this.xrLabel23.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel23.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel23.ForeColor = System.Drawing.Color.Black; + this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(51.2178F, 319.4063F); + this.xrLabel23.Name = "xrLabel23"; + this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel23.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel23.StylePriority.UseBorderColor = false; + this.xrLabel23.StylePriority.UseBorders = false; + this.xrLabel23.StylePriority.UseFont = false; + this.xrLabel23.StylePriority.UseForeColor = false; + this.xrLabel23.StylePriority.UseTextAlignment = false; + this.xrLabel23.Text = "getrennt/geschieden"; + this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel24 + // + this.xrLabel24.BorderColor = System.Drawing.Color.Black; + this.xrLabel24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel24.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel24.ForeColor = System.Drawing.Color.Red; + this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(27.21774F, 319.4063F); + this.xrLabel24.Name = "xrLabel24"; + this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel24.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel24.StylePriority.UseBorderColor = false; + this.xrLabel24.StylePriority.UseBorders = false; + this.xrLabel24.StylePriority.UseFont = false; + this.xrLabel24.StylePriority.UseForeColor = false; + this.xrLabel24.StylePriority.UseTextAlignment = false; + this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel13 + // + this.xrLabel13.BorderColor = System.Drawing.Color.Black; + this.xrLabel13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel13.CanGrow = false; + this.xrLabel13.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel13.ForeColor = System.Drawing.Color.Red; + this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(3.224906F, 231.5312F); + this.xrLabel13.Name = "xrLabel13"; + this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel13.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrLabel13.StylePriority.UseBorderColor = false; + this.xrLabel13.StylePriority.UseBorders = false; + this.xrLabel13.StylePriority.UseFont = false; + this.xrLabel13.StylePriority.UseForeColor = false; + this.xrLabel13.StylePriority.UseTextAlignment = false; + this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel11 + // + this.xrLabel11.BorderColor = System.Drawing.Color.Black; + this.xrLabel11.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel11.CanGrow = false; + this.xrLabel11.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel11.ForeColor = System.Drawing.Color.Red; + this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(27.22478F, 231.5312F); + this.xrLabel11.Name = "xrLabel11"; + this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel11.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel11.StylePriority.UseBorderColor = false; + this.xrLabel11.StylePriority.UseBorders = false; + this.xrLabel11.StylePriority.UseFont = false; + this.xrLabel11.StylePriority.UseForeColor = false; + this.xrLabel11.StylePriority.UseTextAlignment = false; + this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel12 + // + this.xrLabel12.BorderColor = System.Drawing.Color.Black; + this.xrLabel12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel12.CanGrow = false; + this.xrLabel12.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel12.ForeColor = System.Drawing.Color.Black; + this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(51.22485F, 231.5312F); + this.xrLabel12.Name = "xrLabel12"; + this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel12.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel12.StylePriority.UseBorderColor = false; + this.xrLabel12.StylePriority.UseBorders = false; + this.xrLabel12.StylePriority.UseFont = false; + this.xrLabel12.StylePriority.UseForeColor = false; + this.xrLabel12.StylePriority.UseTextAlignment = false; + this.xrLabel12.Text = "Geburtsdatum: [DateOfBirth!dd.MM.yyyy]"; + this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel8 + // + this.xrLabel8.BorderColor = System.Drawing.Color.Black; + this.xrLabel8.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel8.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(3.224906F, 209.656F); + this.xrLabel8.Name = "xrLabel8"; + this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel8.SizeF = new System.Drawing.SizeF(24F, 21.87494F); + this.xrLabel8.StylePriority.UseBorderColor = false; + this.xrLabel8.StylePriority.UseBorders = false; + this.xrLabel8.StylePriority.UseFont = false; + this.xrLabel8.StylePriority.UseForeColor = false; + this.xrLabel8.StylePriority.UseTextAlignment = false; + this.xrLabel8.Text = "2."; + this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel9 + // + this.xrLabel9.BorderColor = System.Drawing.Color.Black; + this.xrLabel9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel9.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel9.ForeColor = System.Drawing.Color.Red; + this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(27.22472F, 209.656F); + this.xrLabel9.Name = "xrLabel9"; + this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel9.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel9.StylePriority.UseBorderColor = false; + this.xrLabel9.StylePriority.UseBorders = false; + this.xrLabel9.StylePriority.UseFont = false; + this.xrLabel9.StylePriority.UseForeColor = false; + this.xrLabel9.StylePriority.UseTextAlignment = false; + this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel10 + // + this.xrLabel10.BorderColor = System.Drawing.Color.Black; + this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel10.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(51.22485F, 209.656F); + this.xrLabel10.Name = "xrLabel10"; + this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel10.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel10.StylePriority.UseBorderColor = false; + this.xrLabel10.StylePriority.UseBorders = false; + this.xrLabel10.StylePriority.UseFont = false; + this.xrLabel10.StylePriority.UseForeColor = false; + this.xrLabel10.StylePriority.UseTextAlignment = false; + this.xrLabel10.Text = "Alter"; + this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel5 + // + this.xrLabel5.BorderColor = System.Drawing.Color.Black; + this.xrLabel5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel5.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel5.ForeColor = System.Drawing.Color.Red; + this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(27.22478F, 187.6562F); + this.xrLabel5.Name = "xrLabel5"; + this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel5.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel5.StylePriority.UseBorderColor = false; + this.xrLabel5.StylePriority.UseBorders = false; + this.xrLabel5.StylePriority.UseFont = false; + this.xrLabel5.StylePriority.UseForeColor = false; + this.xrLabel5.StylePriority.UseTextAlignment = false; + this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel6 + // + this.xrLabel6.BorderColor = System.Drawing.Color.Black; + this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel6.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel6.ForeColor = System.Drawing.Color.Black; + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(51.22479F, 187.6562F); + this.xrLabel6.Name = "xrLabel6"; + this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel6.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel6.StylePriority.UseBorderColor = false; + this.xrLabel6.StylePriority.UseBorders = false; + this.xrLabel6.StylePriority.UseFont = false; + this.xrLabel6.StylePriority.UseForeColor = false; + this.xrLabel6.StylePriority.UseTextAlignment = false; + this.xrLabel6.Text = "divers"; + this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox3 + // + this.xrCheckBox3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox3.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox3.LocationFloat = new DevExpress.Utils.PointFloat(3.224906F, 187.6562F); + this.xrCheckBox3.Name = "xrCheckBox3"; + this.xrCheckBox3.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox3.StylePriority.UseBorders = false; + this.xrCheckBox3.StylePriority.UseFont = false; + this.xrCheckBox3.StylePriority.UseTextAlignment = false; + this.xrCheckBox3.Text = " "; + this.xrCheckBox3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox2 + // + this.xrCheckBox2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox2.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox2.LocationFloat = new DevExpress.Utils.PointFloat(3.218053F, 165.6561F); + this.xrCheckBox2.Name = "xrCheckBox2"; + this.xrCheckBox2.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox2.StylePriority.UseBorders = false; + this.xrCheckBox2.StylePriority.UseFont = false; + this.xrCheckBox2.StylePriority.UseTextAlignment = false; + this.xrCheckBox2.Text = " "; + this.xrCheckBox2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel44 + // + this.xrLabel44.BorderColor = System.Drawing.Color.Black; + this.xrLabel44.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel44.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel44.ForeColor = System.Drawing.Color.Black; + this.xrLabel44.LocationFloat = new DevExpress.Utils.PointFloat(51.21451F, 165.6561F); + this.xrLabel44.Name = "xrLabel44"; + this.xrLabel44.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel44.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel44.StylePriority.UseBorderColor = false; + this.xrLabel44.StylePriority.UseBorders = false; + this.xrLabel44.StylePriority.UseFont = false; + this.xrLabel44.StylePriority.UseForeColor = false; + this.xrLabel44.StylePriority.UseTextAlignment = false; + this.xrLabel44.Text = "männlich"; + this.xrLabel44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel45 + // + this.xrLabel45.BorderColor = System.Drawing.Color.Black; + this.xrLabel45.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel45.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel45.ForeColor = System.Drawing.Color.Red; + this.xrLabel45.LocationFloat = new DevExpress.Utils.PointFloat(27.2145F, 165.6561F); + this.xrLabel45.Name = "xrLabel45"; + this.xrLabel45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel45.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel45.StylePriority.UseBorderColor = false; + this.xrLabel45.StylePriority.UseBorders = false; + this.xrLabel45.StylePriority.UseFont = false; + this.xrLabel45.StylePriority.UseForeColor = false; + this.xrLabel45.StylePriority.UseTextAlignment = false; + this.xrLabel45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel40 + // + this.xrLabel40.BorderColor = System.Drawing.Color.Black; + this.xrLabel40.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel40.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel40.ForeColor = System.Drawing.Color.Red; + this.xrLabel40.LocationFloat = new DevExpress.Utils.PointFloat(27.21806F, 143.6563F); + this.xrLabel40.Name = "xrLabel40"; + this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel40.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel40.StylePriority.UseBorderColor = false; + this.xrLabel40.StylePriority.UseBorders = false; + this.xrLabel40.StylePriority.UseFont = false; + this.xrLabel40.StylePriority.UseForeColor = false; + this.xrLabel40.StylePriority.UseTextAlignment = false; + this.xrLabel40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel41 + // + this.xrLabel41.BorderColor = System.Drawing.Color.Black; + this.xrLabel41.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel41.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel41.ForeColor = System.Drawing.Color.Black; + this.xrLabel41.LocationFloat = new DevExpress.Utils.PointFloat(51.218F, 143.6563F); + this.xrLabel41.Name = "xrLabel41"; + this.xrLabel41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel41.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel41.StylePriority.UseBorderColor = false; + this.xrLabel41.StylePriority.UseBorders = false; + this.xrLabel41.StylePriority.UseFont = false; + this.xrLabel41.StylePriority.UseForeColor = false; + this.xrLabel41.StylePriority.UseTextAlignment = false; + this.xrLabel41.Text = "weiblich"; + this.xrLabel41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox1 + // + this.xrCheckBox1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox1.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox1.LocationFloat = new DevExpress.Utils.PointFloat(3.218053F, 143.6563F); + this.xrCheckBox1.Name = "xrCheckBox1"; + this.xrCheckBox1.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox1.StylePriority.UseBorders = false; + this.xrCheckBox1.StylePriority.UseFont = false; + this.xrCheckBox1.StylePriority.UseTextAlignment = false; + this.xrCheckBox1.Text = " "; + this.xrCheckBox1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel37 + // + this.xrLabel37.BorderColor = System.Drawing.Color.Black; + this.xrLabel37.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel37.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel37.LocationFloat = new DevExpress.Utils.PointFloat(51.21813F, 121.7812F); + this.xrLabel37.Name = "xrLabel37"; + this.xrLabel37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel37.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel37.StylePriority.UseBorderColor = false; + this.xrLabel37.StylePriority.UseBorders = false; + this.xrLabel37.StylePriority.UseFont = false; + this.xrLabel37.StylePriority.UseForeColor = false; + this.xrLabel37.StylePriority.UseTextAlignment = false; + this.xrLabel37.Text = "Geschlecht"; + this.xrLabel37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel38 + // + this.xrLabel38.BorderColor = System.Drawing.Color.Black; + this.xrLabel38.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel38.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel38.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel38.LocationFloat = new DevExpress.Utils.PointFloat(3.218053F, 121.7812F); + this.xrLabel38.Name = "xrLabel38"; + this.xrLabel38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel38.SizeF = new System.Drawing.SizeF(24F, 21.87494F); + this.xrLabel38.StylePriority.UseBorderColor = false; + this.xrLabel38.StylePriority.UseBorders = false; + this.xrLabel38.StylePriority.UseFont = false; + this.xrLabel38.StylePriority.UseForeColor = false; + this.xrLabel38.StylePriority.UseTextAlignment = false; + this.xrLabel38.Text = "1."; + this.xrLabel38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel39 + // + this.xrLabel39.BorderColor = System.Drawing.Color.Black; + this.xrLabel39.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel39.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel39.ForeColor = System.Drawing.Color.Red; + this.xrLabel39.LocationFloat = new DevExpress.Utils.PointFloat(27.21806F, 121.7812F); + this.xrLabel39.Name = "xrLabel39"; + this.xrLabel39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel39.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel39.StylePriority.UseBorderColor = false; + this.xrLabel39.StylePriority.UseBorders = false; + this.xrLabel39.StylePriority.UseFont = false; + this.xrLabel39.StylePriority.UseForeColor = false; + this.xrLabel39.StylePriority.UseTextAlignment = false; + this.xrLabel39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel35 + // + this.xrLabel35.BorderColor = System.Drawing.Color.Black; + this.xrLabel35.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel35.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel35.ForeColor = System.Drawing.Color.Red; + this.xrLabel35.LocationFloat = new DevExpress.Utils.PointFloat(27.21806F, 97.78143F); + this.xrLabel35.Name = "xrLabel35"; + this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel35.SizeF = new System.Drawing.SizeF(24.00002F, 24F); + this.xrLabel35.StylePriority.UseBorderColor = false; + this.xrLabel35.StylePriority.UseBorders = false; + this.xrLabel35.StylePriority.UseFont = false; + this.xrLabel35.StylePriority.UseForeColor = false; + this.xrLabel35.StylePriority.UseTextAlignment = false; + this.xrLabel35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel33 + // + this.xrLabel33.BorderColor = System.Drawing.Color.Black; + this.xrLabel33.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel33.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel33.ForeColor = System.Drawing.Color.Red; + this.xrLabel33.LocationFloat = new DevExpress.Utils.PointFloat(3.218053F, 97.78143F); + this.xrLabel33.Name = "xrLabel33"; + this.xrLabel33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel33.SizeF = new System.Drawing.SizeF(24F, 24F); + this.xrLabel33.StylePriority.UseBorderColor = false; + this.xrLabel33.StylePriority.UseBorders = false; + this.xrLabel33.StylePriority.UseFont = false; + this.xrLabel33.StylePriority.UseForeColor = false; + this.xrLabel33.StylePriority.UseTextAlignment = false; + this.xrLabel33.Text = "A. "; + this.xrLabel33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel34 + // + this.xrLabel34.BorderColor = System.Drawing.Color.Black; + this.xrLabel34.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel34.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel34.ForeColor = System.Drawing.Color.Red; + this.xrLabel34.LocationFloat = new DevExpress.Utils.PointFloat(51.21813F, 97.78143F); + this.xrLabel34.Name = "xrLabel34"; + this.xrLabel34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel34.SizeF = new System.Drawing.SizeF(270.7433F, 24F); + this.xrLabel34.StylePriority.UseBorderColor = false; + this.xrLabel34.StylePriority.UseBorders = false; + this.xrLabel34.StylePriority.UseFont = false; + this.xrLabel34.StylePriority.UseForeColor = false; + this.xrLabel34.StylePriority.UseTextAlignment = false; + this.xrLabel34.Text = "Soziodemographische Daten"; + this.xrLabel34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel561 + // + this.xrLabel561.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); + this.xrLabel561.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrLabel561.Name = "xrLabel561"; + this.xrLabel561.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel561.SizeF = new System.Drawing.SizeF(681.7452F, 25F); + this.xrLabel561.StylePriority.UseFont = false; + this.xrLabel561.StylePriority.UseTextAlignment = false; + this.xrLabel561.Text = "Statistik [Name]"; + this.xrLabel561.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel36 + // + this.xrLabel36.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); + this.xrLabel36.LocationFloat = new DevExpress.Utils.PointFloat(0F, 50.0765F); + this.xrLabel36.Name = "xrLabel36"; + this.xrLabel36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel36.SizeF = new System.Drawing.SizeF(681.6725F, 25F); + this.xrLabel36.StylePriority.UseFont = false; + this.xrLabel36.StylePriority.UseTextAlignment = false; + this.xrLabel36.Text = "Zuverdienstteilnehmerbezogene Daten"; + this.xrLabel36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // SubBand2 + // + this.SubBand2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel346, + this.xrCheckBox221, + this.xrLabel399, + this.xrCheckBox256, + this.xrLabel329, + this.xrLabel328, + this.xrLabel327, + this.xrCheckBox255, + this.xrLabel326, + this.xrCheckBox254, + this.xrLabel325, + this.xrLabel324, + this.xrLabel323, + this.xrLabel322, + this.xrLabel321, + this.xrCheckBox249, + this.xrLabel320, + this.xrCheckBox250, + this.xrCheckBox251, + this.xrLabel319, + this.xrLabel318, + this.xrLabel317, + this.xrLabel316, + this.xrCheckBox253, + this.xrCheckBox252, + this.xrLabel315, + this.xrLabel314, + this.xrLabel313, + this.xrLabel312, + this.xrLabel311, + this.xrCheckBox244, + this.xrLabel310, + this.xrCheckBox246, + this.xrLabel309, + this.xrLabel308, + this.xrLabel307, + this.xrLabel306, + this.xrCheckBox248, + this.xrCheckBox247, + this.xrLabel305, + this.xrLabel304, + this.xrLabel299, + this.xrLabel298, + this.xrCheckBox218, + this.xrCheckBox217, + this.xrLabel297, + this.xrCheckBox216, + this.xrLabel296, + this.xrLabel295, + this.xrLabel291, + this.xrLabel278, + this.xrLabel277, + this.xrLabel276, + this.xrLabel275, + this.xrLabel274, + this.xrLabel273, + this.xrCheckBox210, + this.xrLabel253, + this.xrLabel252, + this.xrLabel251, + this.xrCheckBox211, + this.xrCheckBox209, + this.xrLabel250, + this.xrLabel249, + this.xrLabel248, + this.xrLabel247, + this.xrCheckBox208, + this.xrLabel246, + this.xrLabel245, + this.xrLabel244, + this.xrLabel243, + this.xrLabel242, + this.xrLabel241, + this.xrLabel240, + this.xrLabel239, + this.xrLabel238, + this.xrLabel237, + this.xrLabel236, + this.xrCheckBox205, + this.xrLabel235, + this.xrLabel234, + this.xrCheckBox206, + this.xrCheckBox204, + this.xrLabel233, + this.xrLabel232, + this.xrLabel231, + this.xrLabel230, + this.xrLabel229, + this.xrLabel223, + this.xrLabel222, + this.xrCheckBox202, + this.xrCheckBox203, + this.xrLabel221, + this.xrLabel220, + this.xrLabel216, + this.xrLabel215, + this.xrLabel214, + this.xrCheckBox201, + this.xrLabel211, + this.xrLabel210, + this.xrLabel209, + this.xrLabel208, + this.xrCheckBox200, + this.xrLabel207, + this.xrLabel206, + this.xrLabel205, + this.xrLabel204, + this.xrLabel203, + this.xrLabel202, + this.xrCheckBox207, + this.xrLabel213, + this.xrLabel212, + this.xrLabel256, + this.xrLabel255, + this.xrLabel254, + this.xrCheckBox212, + this.xrLabel228, + this.xrLabel227, + this.xrLabel226, + this.xrLabel225, + this.xrCheckBox213, + this.xrCheckBox215, + this.xrLabel224, + this.xrLabel219, + this.xrLabel218, + this.xrCheckBox214, + this.xrLabel217, + this.xrLabel262, + this.xrLabel261, + this.xrLabel260, + this.xrCheckBox219, + this.xrLabel259, + this.xrCheckBox220, + this.xrLabel258, + this.xrLabel257, + this.xrLabel279, + this.xrCheckBox226, + this.xrLabel272, + this.xrCheckBox225, + this.xrLabel271, + this.xrLabel270, + this.xrLabel268, + this.xrLabel267, + this.xrLabel266, + this.xrCheckBox222, + this.xrLabel265, + this.xrCheckBox223, + this.xrCheckBox224, + this.xrLabel264, + this.xrLabel263, + this.xrLabel294, + this.xrLabel293, + this.xrCheckBox242, + this.xrCheckBox243, + this.xrLabel292, + this.xrLabel290, + this.xrLabel289, + this.xrLabel288, + this.xrCheckBox241, + this.xrCheckBox240, + this.xrLabel287, + this.xrCheckBox239, + this.xrLabel286, + this.xrLabel285, + this.xrLabel281, + this.xrLabel331, + this.xrLabel330, + this.xrLabel303, + this.xrLabel302, + this.xrLabel301, + this.xrLabel300, + this.xrLabel359, + this.xrCheckBox234, + this.xrLabel358, + this.xrLabel357, + this.xrLabel356, + this.xrCheckBox235, + this.xrCheckBox233, + this.xrLabel355, + this.xrLabel354, + this.xrLabel353, + this.xrLabel352, + this.xrCheckBox232, + this.xrLabel351, + this.xrLabel350, + this.xrLabel349, + this.xrLabel345, + this.xrLabel344, + this.xrLabel343, + this.xrLabel342, + this.xrLabel341, + this.xrLabel340, + this.xrCheckBox228, + this.xrLabel339, + this.xrLabel338, + this.xrLabel337, + this.xrLabel336, + this.xrCheckBox229, + this.xrCheckBox231, + this.xrLabel335, + this.xrLabel333, + this.xrCheckBox230, + this.xrLabel282, + this.xrLabel362, + this.xrLabel361, + this.xrCheckBox236, + this.xrCheckBox238, + this.xrLabel360, + this.xrLabel332, + this.xrLabel284, + this.xrCheckBox237, + this.xrLabel283, + this.xrLabel269, + this.xrCheckBox227, + this.xrLabel280, + this.xrCheckBox245, + this.xrLabel347, + this.xrLabel201}); + this.SubBand2.HeightF = 941.1017F; + this.SubBand2.Name = "SubBand2"; + this.SubBand2.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand; + // + // xrLabel346 + // + this.xrLabel346.BorderColor = System.Drawing.Color.Black; + this.xrLabel346.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel346.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel346.ForeColor = System.Drawing.Color.Red; + this.xrLabel346.LocationFloat = new DevExpress.Utils.PointFloat(379.4254F, 219.1762F); + this.xrLabel346.Name = "xrLabel346"; + this.xrLabel346.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel346.SizeF = new System.Drawing.SizeF(23.42636F, 21.74927F); + this.xrLabel346.StylePriority.UseBorderColor = false; + this.xrLabel346.StylePriority.UseBorders = false; + this.xrLabel346.StylePriority.UseFont = false; + this.xrLabel346.StylePriority.UseForeColor = false; + this.xrLabel346.StylePriority.UseTextAlignment = false; + this.xrLabel346.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox221 + // + this.xrCheckBox221.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox221.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox221.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 782.4272F); + this.xrCheckBox221.Name = "xrCheckBox221"; + this.xrCheckBox221.SizeF = new System.Drawing.SizeF(23.32459F, 17.99927F); + this.xrCheckBox221.StylePriority.UseBorders = false; + this.xrCheckBox221.StylePriority.UseFont = false; + this.xrCheckBox221.StylePriority.UseTextAlignment = false; + this.xrCheckBox221.Text = " "; + this.xrCheckBox221.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel399 + // + this.xrLabel399.BorderColor = System.Drawing.Color.Black; + this.xrLabel399.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel399.CanGrow = false; + this.xrLabel399.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel399.ForeColor = System.Drawing.Color.Black; + this.xrLabel399.LocationFloat = new DevExpress.Utils.PointFloat(51.11469F, 484.6762F); + this.xrLabel399.Name = "xrLabel399"; + this.xrLabel399.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel399.SizeF = new System.Drawing.SizeF(271.0843F, 22.00003F); + this.xrLabel399.StylePriority.UseBorderColor = false; + this.xrLabel399.StylePriority.UseBorders = false; + this.xrLabel399.StylePriority.UseFont = false; + this.xrLabel399.StylePriority.UseForeColor = false; + this.xrLabel399.StylePriority.UseTextAlignment = false; + this.xrLabel399.Text = "3. Quartal: "; + this.xrLabel399.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox256 + // + this.xrCheckBox256.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrCheckBox256.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox256.LocationFloat = new DevExpress.Utils.PointFloat(355.725F, 784.9274F); + this.xrCheckBox256.Name = "xrCheckBox256"; + this.xrCheckBox256.SizeF = new System.Drawing.SizeF(24.48776F, 22F); + this.xrCheckBox256.StylePriority.UseBorders = false; + this.xrCheckBox256.StylePriority.UseFont = false; + this.xrCheckBox256.StylePriority.UseTextAlignment = false; + this.xrCheckBox256.Text = " "; + this.xrCheckBox256.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel329 + // + this.xrLabel329.BorderColor = System.Drawing.Color.Black; + this.xrLabel329.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel329.CanGrow = false; + this.xrLabel329.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel329.ForeColor = System.Drawing.Color.Black; + this.xrLabel329.LocationFloat = new DevExpress.Utils.PointFloat(403.7178F, 784.9274F); + this.xrLabel329.Name = "xrLabel329"; + this.xrLabel329.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel329.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel329.StylePriority.UseBorderColor = false; + this.xrLabel329.StylePriority.UseBorders = false; + this.xrLabel329.StylePriority.UseFont = false; + this.xrLabel329.StylePriority.UseForeColor = false; + this.xrLabel329.StylePriority.UseTextAlignment = false; + this.xrLabel329.Text = "keine Tätigkeit"; + this.xrLabel329.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel328 + // + this.xrLabel328.BorderColor = System.Drawing.Color.Black; + this.xrLabel328.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel328.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel328.ForeColor = System.Drawing.Color.Red; + this.xrLabel328.LocationFloat = new DevExpress.Utils.PointFloat(380.402F, 784.9274F); + this.xrLabel328.Name = "xrLabel328"; + this.xrLabel328.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel328.SizeF = new System.Drawing.SizeF(23.31586F, 22F); + this.xrLabel328.StylePriority.UseBorderColor = false; + this.xrLabel328.StylePriority.UseBorders = false; + this.xrLabel328.StylePriority.UseFont = false; + this.xrLabel328.StylePriority.UseForeColor = false; + this.xrLabel328.StylePriority.UseTextAlignment = false; + this.xrLabel328.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel327 + // + this.xrLabel327.BorderColor = System.Drawing.Color.Black; + this.xrLabel327.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel327.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel327.ForeColor = System.Drawing.Color.Red; + this.xrLabel327.LocationFloat = new DevExpress.Utils.PointFloat(355.6388F, 766.9273F); + this.xrLabel327.Name = "xrLabel327"; + this.xrLabel327.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel327.SizeF = new System.Drawing.SizeF(24.48813F, 18F); + this.xrLabel327.StylePriority.UseBorderColor = false; + this.xrLabel327.StylePriority.UseBorders = false; + this.xrLabel327.StylePriority.UseFont = false; + this.xrLabel327.StylePriority.UseForeColor = false; + this.xrLabel327.StylePriority.UseTextAlignment = false; + this.xrLabel327.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox255 + // + this.xrCheckBox255.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox255.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox255.LocationFloat = new DevExpress.Utils.PointFloat(380.3158F, 766.9273F); + this.xrCheckBox255.Name = "xrCheckBox255"; + this.xrCheckBox255.SizeF = new System.Drawing.SizeF(23.31586F, 18F); + this.xrCheckBox255.StylePriority.UseBorders = false; + this.xrCheckBox255.StylePriority.UseFont = false; + this.xrCheckBox255.StylePriority.UseTextAlignment = false; + this.xrCheckBox255.Text = " "; + this.xrCheckBox255.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel326 + // + this.xrLabel326.BorderColor = System.Drawing.Color.Black; + this.xrLabel326.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel326.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel326.ForeColor = System.Drawing.Color.Black; + this.xrLabel326.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 766.9278F); + this.xrLabel326.Name = "xrLabel326"; + this.xrLabel326.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel326.SizeF = new System.Drawing.SizeF(270.7401F, 17.99994F); + this.xrLabel326.StylePriority.UseBorderColor = false; + this.xrLabel326.StylePriority.UseBorders = false; + this.xrLabel326.StylePriority.UseFont = false; + this.xrLabel326.StylePriority.UseForeColor = false; + this.xrLabel326.StylePriority.UseTextAlignment = false; + this.xrLabel326.Text = "und zwar:.."; + this.xrLabel326.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox254 + // + this.xrCheckBox254.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox254.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox254.LocationFloat = new DevExpress.Utils.PointFloat(355.6388F, 744.927F); + this.xrCheckBox254.Name = "xrCheckBox254"; + this.xrCheckBox254.SizeF = new System.Drawing.SizeF(24.48813F, 21.99997F); + this.xrCheckBox254.StylePriority.UseBorders = false; + this.xrCheckBox254.StylePriority.UseFont = false; + this.xrCheckBox254.StylePriority.UseTextAlignment = false; + this.xrCheckBox254.Text = " "; + this.xrCheckBox254.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel325 + // + this.xrLabel325.BorderColor = System.Drawing.Color.Black; + this.xrLabel325.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel325.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel325.ForeColor = System.Drawing.Color.Red; + this.xrLabel325.LocationFloat = new DevExpress.Utils.PointFloat(380.3158F, 744.927F); + this.xrLabel325.Name = "xrLabel325"; + this.xrLabel325.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel325.SizeF = new System.Drawing.SizeF(23.31586F, 21.99997F); + this.xrLabel325.StylePriority.UseBorderColor = false; + this.xrLabel325.StylePriority.UseBorders = false; + this.xrLabel325.StylePriority.UseFont = false; + this.xrLabel325.StylePriority.UseForeColor = false; + this.xrLabel325.StylePriority.UseTextAlignment = false; + this.xrLabel325.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel324 + // + this.xrLabel324.BorderColor = System.Drawing.Color.Black; + this.xrLabel324.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel324.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel324.ForeColor = System.Drawing.Color.Black; + this.xrLabel324.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 744.927F); + this.xrLabel324.Name = "xrLabel324"; + this.xrLabel324.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel324.SizeF = new System.Drawing.SizeF(270.7401F, 21.99997F); + this.xrLabel324.StylePriority.UseBorderColor = false; + this.xrLabel324.StylePriority.UseBorders = false; + this.xrLabel324.StylePriority.UseFont = false; + this.xrLabel324.StylePriority.UseForeColor = false; + this.xrLabel324.StylePriority.UseTextAlignment = false; + this.xrLabel324.Text = "Schule, Studium, Ausbildung, berufl. Reha"; + this.xrLabel324.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel323 + // + this.xrLabel323.BorderColor = System.Drawing.Color.Black; + this.xrLabel323.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel323.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel323.ForeColor = System.Drawing.Color.Black; + this.xrLabel323.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 690.9271F); + this.xrLabel323.Name = "xrLabel323"; + this.xrLabel323.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel323.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel323.StylePriority.UseBorderColor = false; + this.xrLabel323.StylePriority.UseBorders = false; + this.xrLabel323.StylePriority.UseFont = false; + this.xrLabel323.StylePriority.UseForeColor = false; + this.xrLabel323.StylePriority.UseTextAlignment = false; + this.xrLabel323.Text = "Angehörigenpflege"; + this.xrLabel323.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel322 + // + this.xrLabel322.BorderColor = System.Drawing.Color.Black; + this.xrLabel322.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel322.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel322.ForeColor = System.Drawing.Color.Black; + this.xrLabel322.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 650.9266F); + this.xrLabel322.Name = "xrLabel322"; + this.xrLabel322.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel322.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel322.StylePriority.UseBorderColor = false; + this.xrLabel322.StylePriority.UseBorders = false; + this.xrLabel322.StylePriority.UseFont = false; + this.xrLabel322.StylePriority.UseForeColor = false; + this.xrLabel322.StylePriority.UseTextAlignment = false; + this.xrLabel322.Text = "Außerhalb des Arbeitsmarktes"; + this.xrLabel322.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel321 + // + this.xrLabel321.BorderColor = System.Drawing.Color.Black; + this.xrLabel321.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel321.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel321.ForeColor = System.Drawing.Color.Red; + this.xrLabel321.LocationFloat = new DevExpress.Utils.PointFloat(380.3158F, 650.9266F); + this.xrLabel321.Name = "xrLabel321"; + this.xrLabel321.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel321.SizeF = new System.Drawing.SizeF(23.31586F, 22F); + this.xrLabel321.StylePriority.UseBorderColor = false; + this.xrLabel321.StylePriority.UseBorders = false; + this.xrLabel321.StylePriority.UseFont = false; + this.xrLabel321.StylePriority.UseForeColor = false; + this.xrLabel321.StylePriority.UseTextAlignment = false; + this.xrLabel321.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox249 + // + this.xrCheckBox249.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox249.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox249.LocationFloat = new DevExpress.Utils.PointFloat(355.6388F, 650.9266F); + this.xrCheckBox249.Name = "xrCheckBox249"; + this.xrCheckBox249.SizeF = new System.Drawing.SizeF(23.98004F, 22F); + this.xrCheckBox249.StylePriority.UseBorders = false; + this.xrCheckBox249.StylePriority.UseFont = false; + this.xrCheckBox249.StylePriority.UseTextAlignment = false; + this.xrCheckBox249.Text = " "; + this.xrCheckBox249.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel320 + // + this.xrLabel320.BorderColor = System.Drawing.Color.Black; + this.xrLabel320.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel320.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel320.ForeColor = System.Drawing.Color.Black; + this.xrLabel320.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 672.9269F); + this.xrLabel320.Name = "xrLabel320"; + this.xrLabel320.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel320.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel320.StylePriority.UseBorderColor = false; + this.xrLabel320.StylePriority.UseBorders = false; + this.xrLabel320.StylePriority.UseFont = false; + this.xrLabel320.StylePriority.UseForeColor = false; + this.xrLabel320.StylePriority.UseTextAlignment = false; + this.xrLabel320.Text = "Elternzeit"; + this.xrLabel320.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox250 + // + this.xrCheckBox250.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox250.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox250.LocationFloat = new DevExpress.Utils.PointFloat(380.3158F, 672.9269F); + this.xrCheckBox250.Name = "xrCheckBox250"; + this.xrCheckBox250.SizeF = new System.Drawing.SizeF(23.31586F, 18F); + this.xrCheckBox250.StylePriority.UseBorders = false; + this.xrCheckBox250.StylePriority.UseFont = false; + this.xrCheckBox250.StylePriority.UseTextAlignment = false; + this.xrCheckBox250.Text = " "; + this.xrCheckBox250.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox251 + // + this.xrCheckBox251.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox251.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox251.LocationFloat = new DevExpress.Utils.PointFloat(380.3158F, 690.9271F); + this.xrCheckBox251.Name = "xrCheckBox251"; + this.xrCheckBox251.SizeF = new System.Drawing.SizeF(23.31586F, 18F); + this.xrCheckBox251.StylePriority.UseBorders = false; + this.xrCheckBox251.StylePriority.UseFont = false; + this.xrCheckBox251.StylePriority.UseTextAlignment = false; + this.xrCheckBox251.Text = " "; + this.xrCheckBox251.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel319 + // + this.xrLabel319.BorderColor = System.Drawing.Color.Black; + this.xrLabel319.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel319.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel319.ForeColor = System.Drawing.Color.Red; + this.xrLabel319.LocationFloat = new DevExpress.Utils.PointFloat(355.6388F, 672.9269F); + this.xrLabel319.Name = "xrLabel319"; + this.xrLabel319.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel319.SizeF = new System.Drawing.SizeF(24.5777F, 18F); + this.xrLabel319.StylePriority.UseBorderColor = false; + this.xrLabel319.StylePriority.UseBorders = false; + this.xrLabel319.StylePriority.UseFont = false; + this.xrLabel319.StylePriority.UseForeColor = false; + this.xrLabel319.StylePriority.UseTextAlignment = false; + this.xrLabel319.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel318 + // + this.xrLabel318.BorderColor = System.Drawing.Color.Black; + this.xrLabel318.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel318.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel318.ForeColor = System.Drawing.Color.Red; + this.xrLabel318.LocationFloat = new DevExpress.Utils.PointFloat(355.6388F, 690.9271F); + this.xrLabel318.Name = "xrLabel318"; + this.xrLabel318.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel318.SizeF = new System.Drawing.SizeF(24.58768F, 18F); + this.xrLabel318.StylePriority.UseBorderColor = false; + this.xrLabel318.StylePriority.UseBorders = false; + this.xrLabel318.StylePriority.UseFont = false; + this.xrLabel318.StylePriority.UseForeColor = false; + this.xrLabel318.StylePriority.UseTextAlignment = false; + this.xrLabel318.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel317 + // + this.xrLabel317.BorderColor = System.Drawing.Color.Black; + this.xrLabel317.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel317.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel317.ForeColor = System.Drawing.Color.Red; + this.xrLabel317.LocationFloat = new DevExpress.Utils.PointFloat(355.6389F, 726.9271F); + this.xrLabel317.Name = "xrLabel317"; + this.xrLabel317.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel317.SizeF = new System.Drawing.SizeF(24.67081F, 18F); + this.xrLabel317.StylePriority.UseBorderColor = false; + this.xrLabel317.StylePriority.UseBorders = false; + this.xrLabel317.StylePriority.UseFont = false; + this.xrLabel317.StylePriority.UseForeColor = false; + this.xrLabel317.StylePriority.UseTextAlignment = false; + this.xrLabel317.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel316 + // + this.xrLabel316.BorderColor = System.Drawing.Color.Black; + this.xrLabel316.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel316.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel316.ForeColor = System.Drawing.Color.Red; + this.xrLabel316.LocationFloat = new DevExpress.Utils.PointFloat(355.6389F, 708.9272F); + this.xrLabel316.Name = "xrLabel316"; + this.xrLabel316.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel316.SizeF = new System.Drawing.SizeF(24.62921F, 18F); + this.xrLabel316.StylePriority.UseBorderColor = false; + this.xrLabel316.StylePriority.UseBorders = false; + this.xrLabel316.StylePriority.UseFont = false; + this.xrLabel316.StylePriority.UseForeColor = false; + this.xrLabel316.StylePriority.UseTextAlignment = false; + this.xrLabel316.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox253 + // + this.xrCheckBox253.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox253.Font = new System.Drawing.Font("Arial", 8F); + this.xrCheckBox253.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox253.LocationFloat = new DevExpress.Utils.PointFloat(380.3158F, 726.9271F); + this.xrCheckBox253.Name = "xrCheckBox253"; + this.xrCheckBox253.SizeF = new System.Drawing.SizeF(23.31586F, 18F); + this.xrCheckBox253.StylePriority.UseBorders = false; + this.xrCheckBox253.StylePriority.UseFont = false; + this.xrCheckBox253.StylePriority.UseTextAlignment = false; + this.xrCheckBox253.Text = " "; + this.xrCheckBox253.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox252 + // + this.xrCheckBox252.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox252.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox252.LocationFloat = new DevExpress.Utils.PointFloat(380.3158F, 708.9272F); + this.xrCheckBox252.Name = "xrCheckBox252"; + this.xrCheckBox252.SizeF = new System.Drawing.SizeF(23.31586F, 18F); + this.xrCheckBox252.StylePriority.UseBorders = false; + this.xrCheckBox252.StylePriority.UseFont = false; + this.xrCheckBox252.StylePriority.UseTextAlignment = false; + this.xrCheckBox252.Text = " "; + this.xrCheckBox252.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel315 + // + this.xrLabel315.BorderColor = System.Drawing.Color.Black; + this.xrLabel315.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel315.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel315.ForeColor = System.Drawing.Color.Black; + this.xrLabel315.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 708.9272F); + this.xrLabel315.Name = "xrLabel315"; + this.xrLabel315.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel315.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel315.StylePriority.UseBorderColor = false; + this.xrLabel315.StylePriority.UseBorders = false; + this.xrLabel315.StylePriority.UseFont = false; + this.xrLabel315.StylePriority.UseForeColor = false; + this.xrLabel315.StylePriority.UseTextAlignment = false; + this.xrLabel315.Text = "Ehrenamt"; + this.xrLabel315.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel314 + // + this.xrLabel314.BorderColor = System.Drawing.Color.Black; + this.xrLabel314.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel314.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel314.ForeColor = System.Drawing.Color.Black; + this.xrLabel314.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 726.9271F); + this.xrLabel314.Name = "xrLabel314"; + this.xrLabel314.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel314.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel314.StylePriority.UseBorderColor = false; + this.xrLabel314.StylePriority.UseBorders = false; + this.xrLabel314.StylePriority.UseFont = false; + this.xrLabel314.StylePriority.UseForeColor = false; + this.xrLabel314.StylePriority.UseTextAlignment = false; + this.xrLabel314.Text = "Sonstiges:"; + this.xrLabel314.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel313 + // + this.xrLabel313.BorderColor = System.Drawing.Color.Black; + this.xrLabel313.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel313.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel313.ForeColor = System.Drawing.Color.Black; + this.xrLabel313.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 596.9266F); + this.xrLabel313.Name = "xrLabel313"; + this.xrLabel313.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel313.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel313.StylePriority.UseBorderColor = false; + this.xrLabel313.StylePriority.UseBorders = false; + this.xrLabel313.StylePriority.UseFont = false; + this.xrLabel313.StylePriority.UseForeColor = false; + this.xrLabel313.StylePriority.UseTextAlignment = false; + this.xrLabel313.Text = "Zuverdienst"; + this.xrLabel313.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel312 + // + this.xrLabel312.BorderColor = System.Drawing.Color.Black; + this.xrLabel312.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel312.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel312.ForeColor = System.Drawing.Color.Black; + this.xrLabel312.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 556.9267F); + this.xrLabel312.Name = "xrLabel312"; + this.xrLabel312.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel312.SizeF = new System.Drawing.SizeF(270.7401F, 22F); + this.xrLabel312.StylePriority.UseBorderColor = false; + this.xrLabel312.StylePriority.UseBorders = false; + this.xrLabel312.StylePriority.UseFont = false; + this.xrLabel312.StylePriority.UseForeColor = false; + this.xrLabel312.StylePriority.UseTextAlignment = false; + this.xrLabel312.Text = "Besonderer Arbeitsmarkt"; + this.xrLabel312.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel311 + // + this.xrLabel311.BorderColor = System.Drawing.Color.Black; + this.xrLabel311.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel311.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel311.ForeColor = System.Drawing.Color.Red; + this.xrLabel311.LocationFloat = new DevExpress.Utils.PointFloat(379.4254F, 556.9266F); + this.xrLabel311.Name = "xrLabel311"; + this.xrLabel311.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel311.SizeF = new System.Drawing.SizeF(24.20636F, 22F); + this.xrLabel311.StylePriority.UseBorderColor = false; + this.xrLabel311.StylePriority.UseBorders = false; + this.xrLabel311.StylePriority.UseFont = false; + this.xrLabel311.StylePriority.UseForeColor = false; + this.xrLabel311.StylePriority.UseTextAlignment = false; + this.xrLabel311.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox244 + // + this.xrCheckBox244.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox244.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox244.LocationFloat = new DevExpress.Utils.PointFloat(355.5489F, 556.9271F); + this.xrCheckBox244.Name = "xrCheckBox244"; + this.xrCheckBox244.SizeF = new System.Drawing.SizeF(23.87634F, 22F); + this.xrCheckBox244.StylePriority.UseBorders = false; + this.xrCheckBox244.StylePriority.UseFont = false; + this.xrCheckBox244.StylePriority.UseTextAlignment = false; + this.xrCheckBox244.Text = " "; + this.xrCheckBox244.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel310 + // + this.xrLabel310.BorderColor = System.Drawing.Color.Black; + this.xrLabel310.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel310.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel310.ForeColor = System.Drawing.Color.Black; + this.xrLabel310.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 578.9268F); + this.xrLabel310.Name = "xrLabel310"; + this.xrLabel310.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel310.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel310.StylePriority.UseBorderColor = false; + this.xrLabel310.StylePriority.UseBorders = false; + this.xrLabel310.StylePriority.UseFont = false; + this.xrLabel310.StylePriority.UseForeColor = false; + this.xrLabel310.StylePriority.UseTextAlignment = false; + this.xrLabel310.Text = "WfbM"; + this.xrLabel310.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox246 + // + this.xrCheckBox246.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox246.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox246.LocationFloat = new DevExpress.Utils.PointFloat(380.3158F, 596.9266F); + this.xrCheckBox246.Name = "xrCheckBox246"; + this.xrCheckBox246.SizeF = new System.Drawing.SizeF(23.3158F, 18F); + this.xrCheckBox246.StylePriority.UseBorders = false; + this.xrCheckBox246.StylePriority.UseFont = false; + this.xrCheckBox246.StylePriority.UseTextAlignment = false; + this.xrCheckBox246.Text = " "; + this.xrCheckBox246.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel309 + // + this.xrLabel309.BorderColor = System.Drawing.Color.Black; + this.xrLabel309.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel309.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel309.ForeColor = System.Drawing.Color.Red; + this.xrLabel309.LocationFloat = new DevExpress.Utils.PointFloat(355.6389F, 578.9268F); + this.xrLabel309.Name = "xrLabel309"; + this.xrLabel309.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel309.SizeF = new System.Drawing.SizeF(23.89026F, 18F); + this.xrLabel309.StylePriority.UseBorderColor = false; + this.xrLabel309.StylePriority.UseBorders = false; + this.xrLabel309.StylePriority.UseFont = false; + this.xrLabel309.StylePriority.UseForeColor = false; + this.xrLabel309.StylePriority.UseTextAlignment = false; + this.xrLabel309.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel308 + // + this.xrLabel308.BorderColor = System.Drawing.Color.Black; + this.xrLabel308.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel308.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel308.ForeColor = System.Drawing.Color.Red; + this.xrLabel308.LocationFloat = new DevExpress.Utils.PointFloat(355.6388F, 596.9266F); + this.xrLabel308.Name = "xrLabel308"; + this.xrLabel308.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel308.SizeF = new System.Drawing.SizeF(24.49817F, 18F); + this.xrLabel308.StylePriority.UseBorderColor = false; + this.xrLabel308.StylePriority.UseBorders = false; + this.xrLabel308.StylePriority.UseFont = false; + this.xrLabel308.StylePriority.UseForeColor = false; + this.xrLabel308.StylePriority.UseTextAlignment = false; + this.xrLabel308.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel307 + // + this.xrLabel307.BorderColor = System.Drawing.Color.Black; + this.xrLabel307.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel307.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel307.ForeColor = System.Drawing.Color.Red; + this.xrLabel307.LocationFloat = new DevExpress.Utils.PointFloat(355.6389F, 632.9265F); + this.xrLabel307.Name = "xrLabel307"; + this.xrLabel307.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel307.SizeF = new System.Drawing.SizeF(23.98004F, 17.99999F); + this.xrLabel307.StylePriority.UseBorderColor = false; + this.xrLabel307.StylePriority.UseBorders = false; + this.xrLabel307.StylePriority.UseFont = false; + this.xrLabel307.StylePriority.UseForeColor = false; + this.xrLabel307.StylePriority.UseTextAlignment = false; + this.xrLabel307.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel306 + // + this.xrLabel306.BorderColor = System.Drawing.Color.Black; + this.xrLabel306.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel306.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel306.ForeColor = System.Drawing.Color.Red; + this.xrLabel306.LocationFloat = new DevExpress.Utils.PointFloat(355.6389F, 614.9266F); + this.xrLabel306.Name = "xrLabel306"; + this.xrLabel306.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel306.SizeF = new System.Drawing.SizeF(24.53973F, 18F); + this.xrLabel306.StylePriority.UseBorderColor = false; + this.xrLabel306.StylePriority.UseBorders = false; + this.xrLabel306.StylePriority.UseFont = false; + this.xrLabel306.StylePriority.UseForeColor = false; + this.xrLabel306.StylePriority.UseTextAlignment = false; + this.xrLabel306.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox248 + // + this.xrCheckBox248.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox248.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox248.LocationFloat = new DevExpress.Utils.PointFloat(380.3158F, 632.9265F); + this.xrCheckBox248.Name = "xrCheckBox248"; + this.xrCheckBox248.SizeF = new System.Drawing.SizeF(23.3158F, 17.99999F); + this.xrCheckBox248.StylePriority.UseBorders = false; + this.xrCheckBox248.StylePriority.UseFont = false; + this.xrCheckBox248.StylePriority.UseTextAlignment = false; + this.xrCheckBox248.Text = " "; + this.xrCheckBox248.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox247 + // + this.xrCheckBox247.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox247.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox247.LocationFloat = new DevExpress.Utils.PointFloat(380.3158F, 614.9266F); + this.xrCheckBox247.Name = "xrCheckBox247"; + this.xrCheckBox247.SizeF = new System.Drawing.SizeF(23.3158F, 18F); + this.xrCheckBox247.StylePriority.UseBorders = false; + this.xrCheckBox247.StylePriority.UseFont = false; + this.xrCheckBox247.StylePriority.UseTextAlignment = false; + this.xrCheckBox247.Text = " "; + this.xrCheckBox247.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel305 + // + this.xrLabel305.BorderColor = System.Drawing.Color.Black; + this.xrLabel305.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel305.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel305.ForeColor = System.Drawing.Color.Black; + this.xrLabel305.LocationFloat = new DevExpress.Utils.PointFloat(403.6316F, 614.9266F); + this.xrLabel305.Name = "xrLabel305"; + this.xrLabel305.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel305.SizeF = new System.Drawing.SizeF(270.7401F, 18F); + this.xrLabel305.StylePriority.UseBorderColor = false; + this.xrLabel305.StylePriority.UseBorders = false; + this.xrLabel305.StylePriority.UseFont = false; + this.xrLabel305.StylePriority.UseForeColor = false; + this.xrLabel305.StylePriority.UseTextAlignment = false; + this.xrLabel305.Text = "Tagesstätte"; + this.xrLabel305.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel304 + // + this.xrLabel304.BorderColor = System.Drawing.Color.Black; + this.xrLabel304.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel304.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel304.ForeColor = System.Drawing.Color.Black; + this.xrLabel304.LocationFloat = new DevExpress.Utils.PointFloat(403.6318F, 632.9265F); + this.xrLabel304.Name = "xrLabel304"; + this.xrLabel304.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel304.SizeF = new System.Drawing.SizeF(270.7401F, 17.99999F); + this.xrLabel304.StylePriority.UseBorderColor = false; + this.xrLabel304.StylePriority.UseBorders = false; + this.xrLabel304.StylePriority.UseFont = false; + this.xrLabel304.StylePriority.UseForeColor = false; + this.xrLabel304.StylePriority.UseTextAlignment = false; + this.xrLabel304.Text = "Sonstiges, und zwar:"; + this.xrLabel304.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel299 + // + this.xrLabel299.BorderColor = System.Drawing.Color.Black; + this.xrLabel299.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel299.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel299.ForeColor = System.Drawing.Color.Red; + this.xrLabel299.LocationFloat = new DevExpress.Utils.PointFloat(3.152688F, 724.4268F); + this.xrLabel299.Name = "xrLabel299"; + this.xrLabel299.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel299.SizeF = new System.Drawing.SizeF(23.95906F, 18F); + this.xrLabel299.StylePriority.UseBorderColor = false; + this.xrLabel299.StylePriority.UseBorders = false; + this.xrLabel299.StylePriority.UseFont = false; + this.xrLabel299.StylePriority.UseForeColor = false; + this.xrLabel299.StylePriority.UseTextAlignment = false; + this.xrLabel299.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel298 + // + this.xrLabel298.BorderColor = System.Drawing.Color.Black; + this.xrLabel298.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel298.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel298.ForeColor = System.Drawing.Color.Red; + this.xrLabel298.LocationFloat = new DevExpress.Utils.PointFloat(3.152625F, 706.4268F); + this.xrLabel298.Name = "xrLabel298"; + this.xrLabel298.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel298.SizeF = new System.Drawing.SizeF(24.10069F, 18F); + this.xrLabel298.StylePriority.UseBorderColor = false; + this.xrLabel298.StylePriority.UseBorders = false; + this.xrLabel298.StylePriority.UseFont = false; + this.xrLabel298.StylePriority.UseForeColor = false; + this.xrLabel298.StylePriority.UseTextAlignment = false; + this.xrLabel298.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox218 + // + this.xrCheckBox218.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox218.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox218.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 724.4268F); + this.xrCheckBox218.Name = "xrCheckBox218"; + this.xrCheckBox218.SizeF = new System.Drawing.SizeF(23.7382F, 18F); + this.xrCheckBox218.StylePriority.UseBorders = false; + this.xrCheckBox218.StylePriority.UseFont = false; + this.xrCheckBox218.StylePriority.UseTextAlignment = false; + this.xrCheckBox218.Text = " "; + this.xrCheckBox218.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox217 + // + this.xrCheckBox217.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox217.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox217.LocationFloat = new DevExpress.Utils.PointFloat(27.26228F, 706.4268F); + this.xrCheckBox217.Name = "xrCheckBox217"; + this.xrCheckBox217.SizeF = new System.Drawing.SizeF(24F, 18F); + this.xrCheckBox217.StylePriority.UseBorders = false; + this.xrCheckBox217.StylePriority.UseFont = false; + this.xrCheckBox217.StylePriority.UseTextAlignment = false; + this.xrCheckBox217.Text = " "; + this.xrCheckBox217.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel297 + // + this.xrLabel297.BorderColor = System.Drawing.Color.Black; + this.xrLabel297.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel297.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel297.ForeColor = System.Drawing.Color.Black; + this.xrLabel297.LocationFloat = new DevExpress.Utils.PointFloat(51.26281F, 706.4268F); + this.xrLabel297.Name = "xrLabel297"; + this.xrLabel297.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel297.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel297.StylePriority.UseBorderColor = false; + this.xrLabel297.StylePriority.UseBorders = false; + this.xrLabel297.StylePriority.UseFont = false; + this.xrLabel297.StylePriority.UseForeColor = false; + this.xrLabel297.StylePriority.UseTextAlignment = false; + this.xrLabel297.Text = "Entschuldigt: "; + this.xrLabel297.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox216 + // + this.xrCheckBox216.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox216.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox216.LocationFloat = new DevExpress.Utils.PointFloat(3.152625F, 684.4264F); + this.xrCheckBox216.Name = "xrCheckBox216"; + this.xrCheckBox216.SizeF = new System.Drawing.SizeF(24.10069F, 22F); + this.xrCheckBox216.StylePriority.UseBorders = false; + this.xrCheckBox216.StylePriority.UseFont = false; + this.xrCheckBox216.StylePriority.UseTextAlignment = false; + this.xrCheckBox216.Text = " "; + this.xrCheckBox216.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel296 + // + this.xrLabel296.BorderColor = System.Drawing.Color.Black; + this.xrLabel296.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel296.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel296.ForeColor = System.Drawing.Color.Red; + this.xrLabel296.LocationFloat = new DevExpress.Utils.PointFloat(27.2629F, 684.4265F); + this.xrLabel296.Name = "xrLabel296"; + this.xrLabel296.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel296.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel296.StylePriority.UseBorderColor = false; + this.xrLabel296.StylePriority.UseBorders = false; + this.xrLabel296.StylePriority.UseFont = false; + this.xrLabel296.StylePriority.UseForeColor = false; + this.xrLabel296.StylePriority.UseTextAlignment = false; + this.xrLabel296.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel295 + // + this.xrLabel295.BorderColor = System.Drawing.Color.Black; + this.xrLabel295.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel295.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel295.ForeColor = System.Drawing.Color.Black; + this.xrLabel295.LocationFloat = new DevExpress.Utils.PointFloat(51.26281F, 684.4265F); + this.xrLabel295.Name = "xrLabel295"; + this.xrLabel295.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel295.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel295.StylePriority.UseBorderColor = false; + this.xrLabel295.StylePriority.UseBorders = false; + this.xrLabel295.StylePriority.UseFont = false; + this.xrLabel295.StylePriority.UseForeColor = false; + this.xrLabel295.StylePriority.UseTextAlignment = false; + this.xrLabel295.Text = "1. Quartal"; + this.xrLabel295.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel291 + // + this.xrLabel291.BorderColor = System.Drawing.Color.Black; + this.xrLabel291.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel291.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel291.ForeColor = System.Drawing.Color.Black; + this.xrLabel291.LocationFloat = new DevExpress.Utils.PointFloat(51.11468F, 724.4268F); + this.xrLabel291.Name = "xrLabel291"; + this.xrLabel291.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel291.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel291.StylePriority.UseBorderColor = false; + this.xrLabel291.StylePriority.UseBorders = false; + this.xrLabel291.StylePriority.UseFont = false; + this.xrLabel291.StylePriority.UseForeColor = false; + this.xrLabel291.StylePriority.UseTextAlignment = false; + this.xrLabel291.Text = "Unentschuldigt: "; + this.xrLabel291.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel278 + // + this.xrLabel278.BorderColor = System.Drawing.Color.Black; + this.xrLabel278.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel278.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel278.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel278.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 638.5513F); + this.xrLabel278.Name = "xrLabel278"; + this.xrLabel278.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel278.SizeF = new System.Drawing.SizeF(24.11067F, 21.87F); + this.xrLabel278.StylePriority.UseBorderColor = false; + this.xrLabel278.StylePriority.UseBorders = false; + this.xrLabel278.StylePriority.UseFont = false; + this.xrLabel278.StylePriority.UseForeColor = false; + this.xrLabel278.StylePriority.UseTextAlignment = false; + this.xrLabel278.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel277 + // + this.xrLabel277.BorderColor = System.Drawing.Color.Black; + this.xrLabel277.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel277.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel277.ForeColor = System.Drawing.Color.Red; + this.xrLabel277.LocationFloat = new DevExpress.Utils.PointFloat(27.2595F, 638.5513F); + this.xrLabel277.Name = "xrLabel277"; + this.xrLabel277.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel277.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel277.StylePriority.UseBorderColor = false; + this.xrLabel277.StylePriority.UseBorders = false; + this.xrLabel277.StylePriority.UseFont = false; + this.xrLabel277.StylePriority.UseForeColor = false; + this.xrLabel277.StylePriority.UseTextAlignment = false; + this.xrLabel277.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel276 + // + this.xrLabel276.BorderColor = System.Drawing.Color.Black; + this.xrLabel276.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel276.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel276.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel276.LocationFloat = new DevExpress.Utils.PointFloat(51.25938F, 638.5513F); + this.xrLabel276.Name = "xrLabel276"; + this.xrLabel276.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel276.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel276.StylePriority.UseBorderColor = false; + this.xrLabel276.StylePriority.UseBorders = false; + this.xrLabel276.StylePriority.UseFont = false; + this.xrLabel276.StylePriority.UseForeColor = false; + this.xrLabel276.StylePriority.UseTextAlignment = false; + this.xrLabel276.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel275 + // + this.xrLabel275.BorderColor = System.Drawing.Color.Black; + this.xrLabel275.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel275.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel275.ForeColor = System.Drawing.Color.Red; + this.xrLabel275.LocationFloat = new DevExpress.Utils.PointFloat(51.25951F, 660.4263F); + this.xrLabel275.Name = "xrLabel275"; + this.xrLabel275.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel275.SizeF = new System.Drawing.SizeF(270.7433F, 24F); + this.xrLabel275.StylePriority.UseBorderColor = false; + this.xrLabel275.StylePriority.UseBorders = false; + this.xrLabel275.StylePriority.UseFont = false; + this.xrLabel275.StylePriority.UseForeColor = false; + this.xrLabel275.StylePriority.UseTextAlignment = false; + this.xrLabel275.Text = "Abwesenheit wg. Krankheit/Sonstiges"; + this.xrLabel275.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel274 + // + this.xrLabel274.BorderColor = System.Drawing.Color.Black; + this.xrLabel274.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel274.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel274.ForeColor = System.Drawing.Color.Red; + this.xrLabel274.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 660.4266F); + this.xrLabel274.Name = "xrLabel274"; + this.xrLabel274.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel274.SizeF = new System.Drawing.SizeF(24.11067F, 24F); + this.xrLabel274.StylePriority.UseBorderColor = false; + this.xrLabel274.StylePriority.UseBorders = false; + this.xrLabel274.StylePriority.UseFont = false; + this.xrLabel274.StylePriority.UseForeColor = false; + this.xrLabel274.StylePriority.UseTextAlignment = false; + this.xrLabel274.Text = "C."; + this.xrLabel274.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel273 + // + this.xrLabel273.BorderColor = System.Drawing.Color.Black; + this.xrLabel273.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel273.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel273.ForeColor = System.Drawing.Color.Red; + this.xrLabel273.LocationFloat = new DevExpress.Utils.PointFloat(27.2597F, 660.4265F); + this.xrLabel273.Name = "xrLabel273"; + this.xrLabel273.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel273.SizeF = new System.Drawing.SizeF(24.00002F, 24F); + this.xrLabel273.StylePriority.UseBorderColor = false; + this.xrLabel273.StylePriority.UseBorders = false; + this.xrLabel273.StylePriority.UseFont = false; + this.xrLabel273.StylePriority.UseForeColor = false; + this.xrLabel273.StylePriority.UseTextAlignment = false; + this.xrLabel273.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox210 + // + this.xrCheckBox210.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox210.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox210.LocationFloat = new DevExpress.Utils.PointFloat(3.149194F, 484.6765F); + this.xrCheckBox210.Name = "xrCheckBox210"; + this.xrCheckBox210.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox210.StylePriority.UseBorders = false; + this.xrCheckBox210.StylePriority.UseFont = false; + this.xrCheckBox210.StylePriority.UseTextAlignment = false; + this.xrCheckBox210.Text = " "; + this.xrCheckBox210.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel253 + // + this.xrLabel253.BorderColor = System.Drawing.Color.Black; + this.xrLabel253.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel253.CanGrow = false; + this.xrLabel253.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel253.ForeColor = System.Drawing.Color.Red; + this.xrLabel253.LocationFloat = new DevExpress.Utils.PointFloat(27.14235F, 484.6765F); + this.xrLabel253.Name = "xrLabel253"; + this.xrLabel253.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel253.SizeF = new System.Drawing.SizeF(23.97227F, 22F); + this.xrLabel253.StylePriority.UseBorderColor = false; + this.xrLabel253.StylePriority.UseBorders = false; + this.xrLabel253.StylePriority.UseFont = false; + this.xrLabel253.StylePriority.UseForeColor = false; + this.xrLabel253.StylePriority.UseTextAlignment = false; + this.xrLabel253.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel252 + // + this.xrLabel252.BorderColor = System.Drawing.Color.Black; + this.xrLabel252.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel252.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel252.ForeColor = System.Drawing.Color.Red; + this.xrLabel252.LocationFloat = new DevExpress.Utils.PointFloat(27.14228F, 506.6764F); + this.xrLabel252.Name = "xrLabel252"; + this.xrLabel252.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel252.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel252.StylePriority.UseBorderColor = false; + this.xrLabel252.StylePriority.UseBorders = false; + this.xrLabel252.StylePriority.UseFont = false; + this.xrLabel252.StylePriority.UseForeColor = false; + this.xrLabel252.StylePriority.UseTextAlignment = false; + this.xrLabel252.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel251 + // + this.xrLabel251.BorderColor = System.Drawing.Color.Black; + this.xrLabel251.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel251.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel251.ForeColor = System.Drawing.Color.Black; + this.xrLabel251.LocationFloat = new DevExpress.Utils.PointFloat(51.14229F, 506.6764F); + this.xrLabel251.Name = "xrLabel251"; + this.xrLabel251.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel251.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel251.StylePriority.UseBorderColor = false; + this.xrLabel251.StylePriority.UseBorders = false; + this.xrLabel251.StylePriority.UseFont = false; + this.xrLabel251.StylePriority.UseForeColor = false; + this.xrLabel251.StylePriority.UseTextAlignment = false; + this.xrLabel251.Text = "4. Quartal: "; + this.xrLabel251.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox211 + // + this.xrCheckBox211.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox211.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox211.LocationFloat = new DevExpress.Utils.PointFloat(3.149194F, 506.6764F); + this.xrCheckBox211.Name = "xrCheckBox211"; + this.xrCheckBox211.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox211.StylePriority.UseBorders = false; + this.xrCheckBox211.StylePriority.UseFont = false; + this.xrCheckBox211.StylePriority.UseTextAlignment = false; + this.xrCheckBox211.Text = " "; + this.xrCheckBox211.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox209 + // + this.xrCheckBox209.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox209.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox209.LocationFloat = new DevExpress.Utils.PointFloat(3.149323F, 462.9263F); + this.xrCheckBox209.Name = "xrCheckBox209"; + this.xrCheckBox209.SizeF = new System.Drawing.SizeF(23.99F, 21.74988F); + this.xrCheckBox209.StylePriority.UseBorders = false; + this.xrCheckBox209.StylePriority.UseFont = false; + this.xrCheckBox209.StylePriority.UseTextAlignment = false; + this.xrCheckBox209.Text = " "; + this.xrCheckBox209.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel250 + // + this.xrLabel250.BorderColor = System.Drawing.Color.Black; + this.xrLabel250.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel250.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel250.ForeColor = System.Drawing.Color.Black; + this.xrLabel250.LocationFloat = new DevExpress.Utils.PointFloat(51.14229F, 462.9263F); + this.xrLabel250.Name = "xrLabel250"; + this.xrLabel250.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel250.SizeF = new System.Drawing.SizeF(270.74F, 21.74988F); + this.xrLabel250.StylePriority.UseBorderColor = false; + this.xrLabel250.StylePriority.UseBorders = false; + this.xrLabel250.StylePriority.UseFont = false; + this.xrLabel250.StylePriority.UseForeColor = false; + this.xrLabel250.StylePriority.UseTextAlignment = false; + this.xrLabel250.Text = "2. Quartal: "; + this.xrLabel250.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel249 + // + this.xrLabel249.BorderColor = System.Drawing.Color.Black; + this.xrLabel249.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel249.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel249.ForeColor = System.Drawing.Color.Red; + this.xrLabel249.LocationFloat = new DevExpress.Utils.PointFloat(27.14228F, 462.9263F); + this.xrLabel249.Name = "xrLabel249"; + this.xrLabel249.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel249.SizeF = new System.Drawing.SizeF(24F, 21.74988F); + this.xrLabel249.StylePriority.UseBorderColor = false; + this.xrLabel249.StylePriority.UseBorders = false; + this.xrLabel249.StylePriority.UseFont = false; + this.xrLabel249.StylePriority.UseForeColor = false; + this.xrLabel249.StylePriority.UseTextAlignment = false; + this.xrLabel249.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel248 + // + this.xrLabel248.BorderColor = System.Drawing.Color.Black; + this.xrLabel248.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel248.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel248.ForeColor = System.Drawing.Color.Red; + this.xrLabel248.LocationFloat = new DevExpress.Utils.PointFloat(27.14241F, 440.6764F); + this.xrLabel248.Name = "xrLabel248"; + this.xrLabel248.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel248.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel248.StylePriority.UseBorderColor = false; + this.xrLabel248.StylePriority.UseBorders = false; + this.xrLabel248.StylePriority.UseFont = false; + this.xrLabel248.StylePriority.UseForeColor = false; + this.xrLabel248.StylePriority.UseTextAlignment = false; + this.xrLabel248.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel247 + // + this.xrLabel247.BorderColor = System.Drawing.Color.Black; + this.xrLabel247.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel247.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel247.ForeColor = System.Drawing.Color.Black; + this.xrLabel247.LocationFloat = new DevExpress.Utils.PointFloat(51.26281F, 440.6767F); + this.xrLabel247.Name = "xrLabel247"; + this.xrLabel247.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel247.SizeF = new System.Drawing.SizeF(270.6196F, 21.99994F); + this.xrLabel247.StylePriority.UseBorderColor = false; + this.xrLabel247.StylePriority.UseBorders = false; + this.xrLabel247.StylePriority.UseFont = false; + this.xrLabel247.StylePriority.UseForeColor = false; + this.xrLabel247.StylePriority.UseTextAlignment = false; + this.xrLabel247.Text = "1. Quartal: "; + this.xrLabel247.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox208 + // + this.xrCheckBox208.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox208.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox208.LocationFloat = new DevExpress.Utils.PointFloat(3.149323F, 440.6764F); + this.xrCheckBox208.Name = "xrCheckBox208"; + this.xrCheckBox208.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox208.StylePriority.UseBorders = false; + this.xrCheckBox208.StylePriority.UseFont = false; + this.xrCheckBox208.StylePriority.UseTextAlignment = false; + this.xrCheckBox208.Text = " "; + this.xrCheckBox208.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel246 + // + this.xrLabel246.BorderColor = System.Drawing.Color.Black; + this.xrLabel246.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel246.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel246.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel246.LocationFloat = new DevExpress.Utils.PointFloat(51.14248F, 418.8015F); + this.xrLabel246.Name = "xrLabel246"; + this.xrLabel246.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel246.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel246.StylePriority.UseBorderColor = false; + this.xrLabel246.StylePriority.UseBorders = false; + this.xrLabel246.StylePriority.UseFont = false; + this.xrLabel246.StylePriority.UseForeColor = false; + this.xrLabel246.StylePriority.UseTextAlignment = false; + this.xrLabel246.Text = "Vereinbarte Stunden/Woche"; + this.xrLabel246.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel245 + // + this.xrLabel245.BorderColor = System.Drawing.Color.Black; + this.xrLabel245.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel245.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel245.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel245.LocationFloat = new DevExpress.Utils.PointFloat(3.149323F, 418.8015F); + this.xrLabel245.Name = "xrLabel245"; + this.xrLabel245.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel245.SizeF = new System.Drawing.SizeF(23.99F, 21.87F); + this.xrLabel245.StylePriority.UseBorderColor = false; + this.xrLabel245.StylePriority.UseBorders = false; + this.xrLabel245.StylePriority.UseFont = false; + this.xrLabel245.StylePriority.UseForeColor = false; + this.xrLabel245.StylePriority.UseTextAlignment = false; + this.xrLabel245.Text = "1."; + this.xrLabel245.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel244 + // + this.xrLabel244.BorderColor = System.Drawing.Color.Black; + this.xrLabel244.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel244.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel244.ForeColor = System.Drawing.Color.Red; + this.xrLabel244.LocationFloat = new DevExpress.Utils.PointFloat(27.14241F, 418.8015F); + this.xrLabel244.Name = "xrLabel244"; + this.xrLabel244.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel244.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel244.StylePriority.UseBorderColor = false; + this.xrLabel244.StylePriority.UseBorders = false; + this.xrLabel244.StylePriority.UseFont = false; + this.xrLabel244.StylePriority.UseForeColor = false; + this.xrLabel244.StylePriority.UseTextAlignment = false; + this.xrLabel244.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel243 + // + this.xrLabel243.BorderColor = System.Drawing.Color.Black; + this.xrLabel243.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel243.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel243.ForeColor = System.Drawing.Color.Red; + this.xrLabel243.LocationFloat = new DevExpress.Utils.PointFloat(27.14241F, 394.8012F); + this.xrLabel243.Name = "xrLabel243"; + this.xrLabel243.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel243.SizeF = new System.Drawing.SizeF(24.00002F, 24F); + this.xrLabel243.StylePriority.UseBorderColor = false; + this.xrLabel243.StylePriority.UseBorders = false; + this.xrLabel243.StylePriority.UseFont = false; + this.xrLabel243.StylePriority.UseForeColor = false; + this.xrLabel243.StylePriority.UseTextAlignment = false; + this.xrLabel243.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel242 + // + this.xrLabel242.BorderColor = System.Drawing.Color.Black; + this.xrLabel242.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel242.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel242.ForeColor = System.Drawing.Color.Red; + this.xrLabel242.LocationFloat = new DevExpress.Utils.PointFloat(3.149323F, 394.8012F); + this.xrLabel242.Name = "xrLabel242"; + this.xrLabel242.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel242.SizeF = new System.Drawing.SizeF(23.99F, 24F); + this.xrLabel242.StylePriority.UseBorderColor = false; + this.xrLabel242.StylePriority.UseBorders = false; + this.xrLabel242.StylePriority.UseFont = false; + this.xrLabel242.StylePriority.UseForeColor = false; + this.xrLabel242.StylePriority.UseTextAlignment = false; + this.xrLabel242.Text = "B."; + this.xrLabel242.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel241 + // + this.xrLabel241.BorderColor = System.Drawing.Color.Black; + this.xrLabel241.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel241.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel241.ForeColor = System.Drawing.Color.Red; + this.xrLabel241.LocationFloat = new DevExpress.Utils.PointFloat(51.14248F, 394.8012F); + this.xrLabel241.Name = "xrLabel241"; + this.xrLabel241.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel241.SizeF = new System.Drawing.SizeF(270.7433F, 24F); + this.xrLabel241.StylePriority.UseBorderColor = false; + this.xrLabel241.StylePriority.UseBorders = false; + this.xrLabel241.StylePriority.UseFont = false; + this.xrLabel241.StylePriority.UseForeColor = false; + this.xrLabel241.StylePriority.UseTextAlignment = false; + this.xrLabel241.Text = "Wochenarbeitsstunden"; + this.xrLabel241.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel240 + // + this.xrLabel240.BorderColor = System.Drawing.Color.Black; + this.xrLabel240.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel240.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel240.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel240.LocationFloat = new DevExpress.Utils.PointFloat(3.149323F, 372.9264F); + this.xrLabel240.Name = "xrLabel240"; + this.xrLabel240.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel240.SizeF = new System.Drawing.SizeF(23.99F, 21.87F); + this.xrLabel240.StylePriority.UseBorderColor = false; + this.xrLabel240.StylePriority.UseBorders = false; + this.xrLabel240.StylePriority.UseFont = false; + this.xrLabel240.StylePriority.UseForeColor = false; + this.xrLabel240.StylePriority.UseTextAlignment = false; + this.xrLabel240.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel239 + // + this.xrLabel239.BorderColor = System.Drawing.Color.Black; + this.xrLabel239.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel239.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel239.ForeColor = System.Drawing.Color.Red; + this.xrLabel239.LocationFloat = new DevExpress.Utils.PointFloat(27.14219F, 372.9264F); + this.xrLabel239.Name = "xrLabel239"; + this.xrLabel239.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel239.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel239.StylePriority.UseBorderColor = false; + this.xrLabel239.StylePriority.UseBorders = false; + this.xrLabel239.StylePriority.UseFont = false; + this.xrLabel239.StylePriority.UseForeColor = false; + this.xrLabel239.StylePriority.UseTextAlignment = false; + this.xrLabel239.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel238 + // + this.xrLabel238.BorderColor = System.Drawing.Color.Black; + this.xrLabel238.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel238.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel238.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel238.LocationFloat = new DevExpress.Utils.PointFloat(51.14242F, 372.9264F); + this.xrLabel238.Name = "xrLabel238"; + this.xrLabel238.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel238.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel238.StylePriority.UseBorderColor = false; + this.xrLabel238.StylePriority.UseBorders = false; + this.xrLabel238.StylePriority.UseFont = false; + this.xrLabel238.StylePriority.UseForeColor = false; + this.xrLabel238.StylePriority.UseTextAlignment = false; + this.xrLabel238.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel237 + // + this.xrLabel237.BorderColor = System.Drawing.Color.Black; + this.xrLabel237.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel237.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel237.ForeColor = System.Drawing.Color.Red; + this.xrLabel237.LocationFloat = new DevExpress.Utils.PointFloat(27.18696F, 306.9261F); + this.xrLabel237.Name = "xrLabel237"; + this.xrLabel237.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel237.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel237.StylePriority.UseBorderColor = false; + this.xrLabel237.StylePriority.UseBorders = false; + this.xrLabel237.StylePriority.UseFont = false; + this.xrLabel237.StylePriority.UseForeColor = false; + this.xrLabel237.StylePriority.UseTextAlignment = false; + this.xrLabel237.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel236 + // + this.xrLabel236.BorderColor = System.Drawing.Color.Black; + this.xrLabel236.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel236.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel236.ForeColor = System.Drawing.Color.Black; + this.xrLabel236.LocationFloat = new DevExpress.Utils.PointFloat(51.18697F, 306.9261F); + this.xrLabel236.Name = "xrLabel236"; + this.xrLabel236.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel236.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel236.StylePriority.UseBorderColor = false; + this.xrLabel236.StylePriority.UseBorders = false; + this.xrLabel236.StylePriority.UseFont = false; + this.xrLabel236.StylePriority.UseForeColor = false; + this.xrLabel236.StylePriority.UseTextAlignment = false; + this.xrLabel236.Text = "weiblich"; + this.xrLabel236.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox205 + // + this.xrCheckBox205.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox205.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox205.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 306.926F); + this.xrCheckBox205.Name = "xrCheckBox205"; + this.xrCheckBox205.SizeF = new System.Drawing.SizeF(24.04137F, 22F); + this.xrCheckBox205.StylePriority.UseBorders = false; + this.xrCheckBox205.StylePriority.UseFont = false; + this.xrCheckBox205.StylePriority.UseTextAlignment = false; + this.xrCheckBox205.Text = " "; + this.xrCheckBox205.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel235 + // + this.xrLabel235.BorderColor = System.Drawing.Color.Black; + this.xrLabel235.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel235.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel235.ForeColor = System.Drawing.Color.Red; + this.xrLabel235.LocationFloat = new DevExpress.Utils.PointFloat(27.19711F, 328.9265F); + this.xrLabel235.Name = "xrLabel235"; + this.xrLabel235.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel235.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel235.StylePriority.UseBorderColor = false; + this.xrLabel235.StylePriority.UseBorders = false; + this.xrLabel235.StylePriority.UseFont = false; + this.xrLabel235.StylePriority.UseForeColor = false; + this.xrLabel235.StylePriority.UseTextAlignment = false; + this.xrLabel235.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel234 + // + this.xrLabel234.BorderColor = System.Drawing.Color.Black; + this.xrLabel234.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel234.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel234.ForeColor = System.Drawing.Color.Black; + this.xrLabel234.LocationFloat = new DevExpress.Utils.PointFloat(51.19718F, 328.9265F); + this.xrLabel234.Name = "xrLabel234"; + this.xrLabel234.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel234.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel234.StylePriority.UseBorderColor = false; + this.xrLabel234.StylePriority.UseBorders = false; + this.xrLabel234.StylePriority.UseFont = false; + this.xrLabel234.StylePriority.UseForeColor = false; + this.xrLabel234.StylePriority.UseTextAlignment = false; + this.xrLabel234.Text = "männlich"; + this.xrLabel234.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox206 + // + this.xrCheckBox206.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox206.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox206.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 328.9266F); + this.xrCheckBox206.Name = "xrCheckBox206"; + this.xrCheckBox206.SizeF = new System.Drawing.SizeF(24.04486F, 22.00003F); + this.xrCheckBox206.StylePriority.UseBorders = false; + this.xrCheckBox206.StylePriority.UseFont = false; + this.xrCheckBox206.StylePriority.UseTextAlignment = false; + this.xrCheckBox206.Text = " "; + this.xrCheckBox206.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox204 + // + this.xrCheckBox204.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox204.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox204.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 263.0511F); + this.xrCheckBox204.Name = "xrCheckBox204"; + this.xrCheckBox204.SizeF = new System.Drawing.SizeF(24.04146F, 22F); + this.xrCheckBox204.StylePriority.UseBorders = false; + this.xrCheckBox204.StylePriority.UseFont = false; + this.xrCheckBox204.StylePriority.UseTextAlignment = false; + this.xrCheckBox204.Text = " "; + this.xrCheckBox204.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel233 + // + this.xrLabel233.BorderColor = System.Drawing.Color.Black; + this.xrLabel233.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel233.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel233.ForeColor = System.Drawing.Color.Black; + this.xrLabel233.LocationFloat = new DevExpress.Utils.PointFloat(51.19382F, 263.0512F); + this.xrLabel233.Name = "xrLabel233"; + this.xrLabel233.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel233.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel233.StylePriority.UseBorderColor = false; + this.xrLabel233.StylePriority.UseBorders = false; + this.xrLabel233.StylePriority.UseFont = false; + this.xrLabel233.StylePriority.UseForeColor = false; + this.xrLabel233.StylePriority.UseTextAlignment = false; + this.xrLabel233.Text = "Sonstiges:"; + this.xrLabel233.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel232 + // + this.xrLabel232.BorderColor = System.Drawing.Color.Black; + this.xrLabel232.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel232.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel232.ForeColor = System.Drawing.Color.Red; + this.xrLabel232.LocationFloat = new DevExpress.Utils.PointFloat(27.19375F, 263.0512F); + this.xrLabel232.Name = "xrLabel232"; + this.xrLabel232.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel232.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel232.StylePriority.UseBorderColor = false; + this.xrLabel232.StylePriority.UseBorders = false; + this.xrLabel232.StylePriority.UseFont = false; + this.xrLabel232.StylePriority.UseForeColor = false; + this.xrLabel232.StylePriority.UseTextAlignment = false; + this.xrLabel232.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel231 + // + this.xrLabel231.BorderColor = System.Drawing.Color.Black; + this.xrLabel231.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel231.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel231.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel231.LocationFloat = new DevExpress.Utils.PointFloat(51.18697F, 285.0512F); + this.xrLabel231.Name = "xrLabel231"; + this.xrLabel231.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel231.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel231.StylePriority.UseBorderColor = false; + this.xrLabel231.StylePriority.UseBorders = false; + this.xrLabel231.StylePriority.UseFont = false; + this.xrLabel231.StylePriority.UseForeColor = false; + this.xrLabel231.StylePriority.UseTextAlignment = false; + this.xrLabel231.Text = "Anleiter/in"; + this.xrLabel231.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel230 + // + this.xrLabel230.BorderColor = System.Drawing.Color.Black; + this.xrLabel230.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel230.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel230.ForeColor = System.Drawing.Color.Red; + this.xrLabel230.LocationFloat = new DevExpress.Utils.PointFloat(27.18683F, 285.0512F); + this.xrLabel230.Name = "xrLabel230"; + this.xrLabel230.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel230.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel230.StylePriority.UseBorderColor = false; + this.xrLabel230.StylePriority.UseBorders = false; + this.xrLabel230.StylePriority.UseFont = false; + this.xrLabel230.StylePriority.UseForeColor = false; + this.xrLabel230.StylePriority.UseTextAlignment = false; + this.xrLabel230.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel229 + // + this.xrLabel229.BorderColor = System.Drawing.Color.Black; + this.xrLabel229.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel229.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel229.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel229.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 285.0512F); + this.xrLabel229.Name = "xrLabel229"; + this.xrLabel229.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel229.SizeF = new System.Drawing.SizeF(24.04137F, 21.87F); + this.xrLabel229.StylePriority.UseBorderColor = false; + this.xrLabel229.StylePriority.UseBorders = false; + this.xrLabel229.StylePriority.UseFont = false; + this.xrLabel229.StylePriority.UseForeColor = false; + this.xrLabel229.StylePriority.UseTextAlignment = false; + this.xrLabel229.Text = "3."; + this.xrLabel229.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel223 + // + this.xrLabel223.BorderColor = System.Drawing.Color.Black; + this.xrLabel223.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel223.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel223.ForeColor = System.Drawing.Color.Red; + this.xrLabel223.LocationFloat = new DevExpress.Utils.PointFloat(27.18347F, 219.051F); + this.xrLabel223.Name = "xrLabel223"; + this.xrLabel223.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel223.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel223.StylePriority.UseBorderColor = false; + this.xrLabel223.StylePriority.UseBorders = false; + this.xrLabel223.StylePriority.UseFont = false; + this.xrLabel223.StylePriority.UseForeColor = false; + this.xrLabel223.StylePriority.UseTextAlignment = false; + this.xrLabel223.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel222 + // + this.xrLabel222.BorderColor = System.Drawing.Color.Black; + this.xrLabel222.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel222.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel222.ForeColor = System.Drawing.Color.Black; + this.xrLabel222.LocationFloat = new DevExpress.Utils.PointFloat(51.26281F, 219.051F); + this.xrLabel222.Name = "xrLabel222"; + this.xrLabel222.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel222.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel222.StylePriority.UseBorderColor = false; + this.xrLabel222.StylePriority.UseBorders = false; + this.xrLabel222.StylePriority.UseFont = false; + this.xrLabel222.StylePriority.UseForeColor = false; + this.xrLabel222.StylePriority.UseTextAlignment = false; + this.xrLabel222.Text = "Dienstleistung"; + this.xrLabel222.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox202 + // + this.xrCheckBox202.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox202.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox202.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 219.0511F); + this.xrCheckBox202.Name = "xrCheckBox202"; + this.xrCheckBox202.SizeF = new System.Drawing.SizeF(24.03466F, 22F); + this.xrCheckBox202.StylePriority.UseBorders = false; + this.xrCheckBox202.StylePriority.UseFont = false; + this.xrCheckBox202.StylePriority.UseTextAlignment = false; + this.xrCheckBox202.Text = " "; + this.xrCheckBox202.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox203 + // + this.xrCheckBox203.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox203.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox203.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 241.0515F); + this.xrCheckBox203.Name = "xrCheckBox203"; + this.xrCheckBox203.SizeF = new System.Drawing.SizeF(24.03466F, 22F); + this.xrCheckBox203.StylePriority.UseBorders = false; + this.xrCheckBox203.StylePriority.UseFont = false; + this.xrCheckBox203.StylePriority.UseTextAlignment = false; + this.xrCheckBox203.Text = " "; + this.xrCheckBox203.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel221 + // + this.xrLabel221.BorderColor = System.Drawing.Color.Black; + this.xrLabel221.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel221.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel221.ForeColor = System.Drawing.Color.Black; + this.xrLabel221.LocationFloat = new DevExpress.Utils.PointFloat(51.17998F, 241.0514F); + this.xrLabel221.Name = "xrLabel221"; + this.xrLabel221.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel221.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel221.StylePriority.UseBorderColor = false; + this.xrLabel221.StylePriority.UseBorders = false; + this.xrLabel221.StylePriority.UseFont = false; + this.xrLabel221.StylePriority.UseForeColor = false; + this.xrLabel221.StylePriority.UseTextAlignment = false; + this.xrLabel221.Text = "Produktion"; + this.xrLabel221.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel220 + // + this.xrLabel220.BorderColor = System.Drawing.Color.Black; + this.xrLabel220.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel220.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel220.ForeColor = System.Drawing.Color.Red; + this.xrLabel220.LocationFloat = new DevExpress.Utils.PointFloat(27.17988F, 241.0514F); + this.xrLabel220.Name = "xrLabel220"; + this.xrLabel220.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel220.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel220.StylePriority.UseBorderColor = false; + this.xrLabel220.StylePriority.UseBorders = false; + this.xrLabel220.StylePriority.UseFont = false; + this.xrLabel220.StylePriority.UseForeColor = false; + this.xrLabel220.StylePriority.UseTextAlignment = false; + this.xrLabel220.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel216 + // + this.xrLabel216.BorderColor = System.Drawing.Color.Black; + this.xrLabel216.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel216.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel216.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel216.LocationFloat = new DevExpress.Utils.PointFloat(3.142438F, 197.1761F); + this.xrLabel216.Name = "xrLabel216"; + this.xrLabel216.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel216.SizeF = new System.Drawing.SizeF(24F, 21.87494F); + this.xrLabel216.StylePriority.UseBorderColor = false; + this.xrLabel216.StylePriority.UseBorders = false; + this.xrLabel216.StylePriority.UseFont = false; + this.xrLabel216.StylePriority.UseForeColor = false; + this.xrLabel216.StylePriority.UseTextAlignment = false; + this.xrLabel216.Text = "2."; + this.xrLabel216.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel215 + // + this.xrLabel215.BorderColor = System.Drawing.Color.Black; + this.xrLabel215.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel215.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel215.ForeColor = System.Drawing.Color.Red; + this.xrLabel215.LocationFloat = new DevExpress.Utils.PointFloat(27.14228F, 197.1761F); + this.xrLabel215.Name = "xrLabel215"; + this.xrLabel215.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel215.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel215.StylePriority.UseBorderColor = false; + this.xrLabel215.StylePriority.UseBorders = false; + this.xrLabel215.StylePriority.UseFont = false; + this.xrLabel215.StylePriority.UseForeColor = false; + this.xrLabel215.StylePriority.UseTextAlignment = false; + this.xrLabel215.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel214 + // + this.xrLabel214.BorderColor = System.Drawing.Color.Black; + this.xrLabel214.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel214.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel214.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel214.LocationFloat = new DevExpress.Utils.PointFloat(51.14242F, 197.1761F); + this.xrLabel214.Name = "xrLabel214"; + this.xrLabel214.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel214.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel214.StylePriority.UseBorderColor = false; + this.xrLabel214.StylePriority.UseBorders = false; + this.xrLabel214.StylePriority.UseFont = false; + this.xrLabel214.StylePriority.UseForeColor = false; + this.xrLabel214.StylePriority.UseTextAlignment = false; + this.xrLabel214.Text = "Branche"; + this.xrLabel214.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox201 + // + this.xrCheckBox201.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox201.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox201.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 175.176F); + this.xrCheckBox201.Name = "xrCheckBox201"; + this.xrCheckBox201.SizeF = new System.Drawing.SizeF(24.02782F, 22.00002F); + this.xrCheckBox201.StylePriority.UseBorders = false; + this.xrCheckBox201.StylePriority.UseFont = false; + this.xrCheckBox201.StylePriority.UseTextAlignment = false; + this.xrCheckBox201.Text = " "; + this.xrCheckBox201.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel211 + // + this.xrLabel211.BorderColor = System.Drawing.Color.Black; + this.xrLabel211.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel211.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel211.ForeColor = System.Drawing.Color.Black; + this.xrLabel211.LocationFloat = new DevExpress.Utils.PointFloat(51.17662F, 175.1761F); + this.xrLabel211.Name = "xrLabel211"; + this.xrLabel211.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel211.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel211.StylePriority.UseBorderColor = false; + this.xrLabel211.StylePriority.UseBorders = false; + this.xrLabel211.StylePriority.UseFont = false; + this.xrLabel211.StylePriority.UseForeColor = false; + this.xrLabel211.StylePriority.UseTextAlignment = false; + this.xrLabel211.Text = "Landkreisansbach"; + this.xrLabel211.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel210 + // + this.xrLabel210.BorderColor = System.Drawing.Color.Black; + this.xrLabel210.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel210.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel210.ForeColor = System.Drawing.Color.Red; + this.xrLabel210.LocationFloat = new DevExpress.Utils.PointFloat(27.17661F, 175.1761F); + this.xrLabel210.Name = "xrLabel210"; + this.xrLabel210.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel210.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel210.StylePriority.UseBorderColor = false; + this.xrLabel210.StylePriority.UseBorders = false; + this.xrLabel210.StylePriority.UseFont = false; + this.xrLabel210.StylePriority.UseForeColor = false; + this.xrLabel210.StylePriority.UseTextAlignment = false; + this.xrLabel210.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel209 + // + this.xrLabel209.BorderColor = System.Drawing.Color.Black; + this.xrLabel209.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel209.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel209.ForeColor = System.Drawing.Color.Red; + this.xrLabel209.LocationFloat = new DevExpress.Utils.PointFloat(27.18011F, 153.1763F); + this.xrLabel209.Name = "xrLabel209"; + this.xrLabel209.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel209.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel209.StylePriority.UseBorderColor = false; + this.xrLabel209.StylePriority.UseBorders = false; + this.xrLabel209.StylePriority.UseFont = false; + this.xrLabel209.StylePriority.UseForeColor = false; + this.xrLabel209.StylePriority.UseTextAlignment = false; + this.xrLabel209.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel208 + // + this.xrLabel208.BorderColor = System.Drawing.Color.Black; + this.xrLabel208.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel208.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel208.ForeColor = System.Drawing.Color.Black; + this.xrLabel208.LocationFloat = new DevExpress.Utils.PointFloat(51.18011F, 153.1763F); + this.xrLabel208.Name = "xrLabel208"; + this.xrLabel208.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel208.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel208.StylePriority.UseBorderColor = false; + this.xrLabel208.StylePriority.UseBorders = false; + this.xrLabel208.StylePriority.UseFont = false; + this.xrLabel208.StylePriority.UseForeColor = false; + this.xrLabel208.StylePriority.UseTextAlignment = false; + this.xrLabel208.Text = "Stadt Ansbach"; + this.xrLabel208.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox200 + // + this.xrCheckBox200.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox200.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox200.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 153.1764F); + this.xrCheckBox200.Name = "xrCheckBox200"; + this.xrCheckBox200.SizeF = new System.Drawing.SizeF(24.02782F, 21.99998F); + this.xrCheckBox200.StylePriority.UseBorders = false; + this.xrCheckBox200.StylePriority.UseFont = false; + this.xrCheckBox200.StylePriority.UseTextAlignment = false; + this.xrCheckBox200.Text = " "; + this.xrCheckBox200.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel207 + // + this.xrLabel207.BorderColor = System.Drawing.Color.Black; + this.xrLabel207.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel207.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel207.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel207.LocationFloat = new DevExpress.Utils.PointFloat(51.18024F, 131.3011F); + this.xrLabel207.Name = "xrLabel207"; + this.xrLabel207.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel207.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel207.StylePriority.UseBorderColor = false; + this.xrLabel207.StylePriority.UseBorders = false; + this.xrLabel207.StylePriority.UseFont = false; + this.xrLabel207.StylePriority.UseForeColor = false; + this.xrLabel207.StylePriority.UseTextAlignment = false; + this.xrLabel207.Text = "Sitz des Unternehmens"; + this.xrLabel207.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel206 + // + this.xrLabel206.BorderColor = System.Drawing.Color.Black; + this.xrLabel206.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel206.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel206.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel206.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 131.3011F); + this.xrLabel206.Name = "xrLabel206"; + this.xrLabel206.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel206.SizeF = new System.Drawing.SizeF(24.03784F, 21.87494F); + this.xrLabel206.StylePriority.UseBorderColor = false; + this.xrLabel206.StylePriority.UseBorders = false; + this.xrLabel206.StylePriority.UseFont = false; + this.xrLabel206.StylePriority.UseForeColor = false; + this.xrLabel206.StylePriority.UseTextAlignment = false; + this.xrLabel206.Text = "1."; + this.xrLabel206.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel205 + // + this.xrLabel205.BorderColor = System.Drawing.Color.Black; + this.xrLabel205.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel205.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel205.ForeColor = System.Drawing.Color.Red; + this.xrLabel205.LocationFloat = new DevExpress.Utils.PointFloat(27.18011F, 131.3011F); + this.xrLabel205.Name = "xrLabel205"; + this.xrLabel205.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel205.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel205.StylePriority.UseBorderColor = false; + this.xrLabel205.StylePriority.UseBorders = false; + this.xrLabel205.StylePriority.UseFont = false; + this.xrLabel205.StylePriority.UseForeColor = false; + this.xrLabel205.StylePriority.UseTextAlignment = false; + this.xrLabel205.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel204 + // + this.xrLabel204.BorderColor = System.Drawing.Color.Black; + this.xrLabel204.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel204.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel204.ForeColor = System.Drawing.Color.Red; + this.xrLabel204.LocationFloat = new DevExpress.Utils.PointFloat(27.18017F, 107.3011F); + this.xrLabel204.Name = "xrLabel204"; + this.xrLabel204.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel204.SizeF = new System.Drawing.SizeF(24.00002F, 24F); + this.xrLabel204.StylePriority.UseBorderColor = false; + this.xrLabel204.StylePriority.UseBorders = false; + this.xrLabel204.StylePriority.UseFont = false; + this.xrLabel204.StylePriority.UseForeColor = false; + this.xrLabel204.StylePriority.UseTextAlignment = false; + this.xrLabel204.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel203 + // + this.xrLabel203.BorderColor = System.Drawing.Color.Black; + this.xrLabel203.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel203.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel203.ForeColor = System.Drawing.Color.Red; + this.xrLabel203.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 107.3011F); + this.xrLabel203.Name = "xrLabel203"; + this.xrLabel203.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel203.SizeF = new System.Drawing.SizeF(24.03784F, 23.99999F); + this.xrLabel203.StylePriority.UseBorderColor = false; + this.xrLabel203.StylePriority.UseBorders = false; + this.xrLabel203.StylePriority.UseFont = false; + this.xrLabel203.StylePriority.UseForeColor = false; + this.xrLabel203.StylePriority.UseTextAlignment = false; + this.xrLabel203.Text = "A. "; + this.xrLabel203.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel202 + // + this.xrLabel202.BorderColor = System.Drawing.Color.Black; + this.xrLabel202.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel202.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel202.ForeColor = System.Drawing.Color.Red; + this.xrLabel202.LocationFloat = new DevExpress.Utils.PointFloat(51.18024F, 107.3011F); + this.xrLabel202.Name = "xrLabel202"; + this.xrLabel202.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel202.SizeF = new System.Drawing.SizeF(270.7433F, 24F); + this.xrLabel202.StylePriority.UseBorderColor = false; + this.xrLabel202.StylePriority.UseBorders = false; + this.xrLabel202.StylePriority.UseFont = false; + this.xrLabel202.StylePriority.UseForeColor = false; + this.xrLabel202.StylePriority.UseTextAlignment = false; + this.xrLabel202.Text = "Zuverdienstplatzanbieter"; + this.xrLabel202.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox207 + // + this.xrCheckBox207.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox207.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox207.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 350.9262F); + this.xrCheckBox207.Name = "xrCheckBox207"; + this.xrCheckBox207.SizeF = new System.Drawing.SizeF(23.96234F, 22F); + this.xrCheckBox207.StylePriority.UseBorders = false; + this.xrCheckBox207.StylePriority.UseFont = false; + this.xrCheckBox207.StylePriority.UseTextAlignment = false; + this.xrCheckBox207.Text = " "; + this.xrCheckBox207.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel213 + // + this.xrLabel213.BorderColor = System.Drawing.Color.Black; + this.xrLabel213.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel213.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel213.ForeColor = System.Drawing.Color.Black; + this.xrLabel213.LocationFloat = new DevExpress.Utils.PointFloat(51.11468F, 350.9263F); + this.xrLabel213.Name = "xrLabel213"; + this.xrLabel213.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel213.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel213.StylePriority.UseBorderColor = false; + this.xrLabel213.StylePriority.UseBorders = false; + this.xrLabel213.StylePriority.UseFont = false; + this.xrLabel213.StylePriority.UseForeColor = false; + this.xrLabel213.StylePriority.UseTextAlignment = false; + this.xrLabel213.Text = "divers"; + this.xrLabel213.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel212 + // + this.xrLabel212.BorderColor = System.Drawing.Color.Black; + this.xrLabel212.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel212.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel212.ForeColor = System.Drawing.Color.Red; + this.xrLabel212.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 350.9262F); + this.xrLabel212.Name = "xrLabel212"; + this.xrLabel212.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel212.SizeF = new System.Drawing.SizeF(23.73804F, 22F); + this.xrLabel212.StylePriority.UseBorderColor = false; + this.xrLabel212.StylePriority.UseBorders = false; + this.xrLabel212.StylePriority.UseFont = false; + this.xrLabel212.StylePriority.UseForeColor = false; + this.xrLabel212.StylePriority.UseTextAlignment = false; + this.xrLabel212.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel256 + // + this.xrLabel256.BorderColor = System.Drawing.Color.Black; + this.xrLabel256.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel256.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel256.ForeColor = System.Drawing.Color.Red; + this.xrLabel256.LocationFloat = new DevExpress.Utils.PointFloat(27.25931F, 528.6761F); + this.xrLabel256.Name = "xrLabel256"; + this.xrLabel256.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel256.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel256.StylePriority.UseBorderColor = false; + this.xrLabel256.StylePriority.UseBorders = false; + this.xrLabel256.StylePriority.UseFont = false; + this.xrLabel256.StylePriority.UseForeColor = false; + this.xrLabel256.StylePriority.UseTextAlignment = false; + this.xrLabel256.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel255 + // + this.xrLabel255.BorderColor = System.Drawing.Color.Black; + this.xrLabel255.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel255.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel255.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel255.LocationFloat = new DevExpress.Utils.PointFloat(3.142452F, 528.6761F); + this.xrLabel255.Name = "xrLabel255"; + this.xrLabel255.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel255.SizeF = new System.Drawing.SizeF(24.11375F, 21.87F); + this.xrLabel255.StylePriority.UseBorderColor = false; + this.xrLabel255.StylePriority.UseBorders = false; + this.xrLabel255.StylePriority.UseFont = false; + this.xrLabel255.StylePriority.UseForeColor = false; + this.xrLabel255.StylePriority.UseTextAlignment = false; + this.xrLabel255.Text = "2."; + this.xrLabel255.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel254 + // + this.xrLabel254.BorderColor = System.Drawing.Color.Black; + this.xrLabel254.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel254.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel254.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel254.LocationFloat = new DevExpress.Utils.PointFloat(51.25938F, 528.6761F); + this.xrLabel254.Name = "xrLabel254"; + this.xrLabel254.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel254.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel254.StylePriority.UseBorderColor = false; + this.xrLabel254.StylePriority.UseBorders = false; + this.xrLabel254.StylePriority.UseFont = false; + this.xrLabel254.StylePriority.UseForeColor = false; + this.xrLabel254.StylePriority.UseTextAlignment = false; + this.xrLabel254.Text = "Tatsächliche Stunden/Woche"; + this.xrLabel254.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox212 + // + this.xrCheckBox212.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox212.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox212.LocationFloat = new DevExpress.Utils.PointFloat(3.142452F, 550.5513F); + this.xrCheckBox212.Name = "xrCheckBox212"; + this.xrCheckBox212.SizeF = new System.Drawing.SizeF(24.11375F, 22F); + this.xrCheckBox212.StylePriority.UseBorders = false; + this.xrCheckBox212.StylePriority.UseFont = false; + this.xrCheckBox212.StylePriority.UseTextAlignment = false; + this.xrCheckBox212.Text = " "; + this.xrCheckBox212.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel228 + // + this.xrLabel228.BorderColor = System.Drawing.Color.Black; + this.xrLabel228.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel228.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel228.ForeColor = System.Drawing.Color.Black; + this.xrLabel228.LocationFloat = new DevExpress.Utils.PointFloat(51.25932F, 550.5513F); + this.xrLabel228.Name = "xrLabel228"; + this.xrLabel228.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel228.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel228.StylePriority.UseBorderColor = false; + this.xrLabel228.StylePriority.UseBorders = false; + this.xrLabel228.StylePriority.UseFont = false; + this.xrLabel228.StylePriority.UseForeColor = false; + this.xrLabel228.StylePriority.UseTextAlignment = false; + this.xrLabel228.Text = "1. Quartal: "; + this.xrLabel228.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel227 + // + this.xrLabel227.BorderColor = System.Drawing.Color.Black; + this.xrLabel227.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel227.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel227.ForeColor = System.Drawing.Color.Red; + this.xrLabel227.LocationFloat = new DevExpress.Utils.PointFloat(27.25931F, 550.5513F); + this.xrLabel227.Name = "xrLabel227"; + this.xrLabel227.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel227.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel227.StylePriority.UseBorderColor = false; + this.xrLabel227.StylePriority.UseBorders = false; + this.xrLabel227.StylePriority.UseFont = false; + this.xrLabel227.StylePriority.UseForeColor = false; + this.xrLabel227.StylePriority.UseTextAlignment = false; + this.xrLabel227.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel226 + // + this.xrLabel226.BorderColor = System.Drawing.Color.Black; + this.xrLabel226.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel226.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel226.ForeColor = System.Drawing.Color.Red; + this.xrLabel226.LocationFloat = new DevExpress.Utils.PointFloat(27.25915F, 572.5511F); + this.xrLabel226.Name = "xrLabel226"; + this.xrLabel226.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel226.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel226.StylePriority.UseBorderColor = false; + this.xrLabel226.StylePriority.UseBorders = false; + this.xrLabel226.StylePriority.UseFont = false; + this.xrLabel226.StylePriority.UseForeColor = false; + this.xrLabel226.StylePriority.UseTextAlignment = false; + this.xrLabel226.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel225 + // + this.xrLabel225.BorderColor = System.Drawing.Color.Black; + this.xrLabel225.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel225.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel225.ForeColor = System.Drawing.Color.Black; + this.xrLabel225.LocationFloat = new DevExpress.Utils.PointFloat(51.25925F, 572.5511F); + this.xrLabel225.Name = "xrLabel225"; + this.xrLabel225.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel225.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel225.StylePriority.UseBorderColor = false; + this.xrLabel225.StylePriority.UseBorders = false; + this.xrLabel225.StylePriority.UseFont = false; + this.xrLabel225.StylePriority.UseForeColor = false; + this.xrLabel225.StylePriority.UseTextAlignment = false; + this.xrLabel225.Text = "2. Quartal: "; + this.xrLabel225.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox213 + // + this.xrCheckBox213.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox213.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox213.LocationFloat = new DevExpress.Utils.PointFloat(3.142484F, 572.5513F); + this.xrCheckBox213.Name = "xrCheckBox213"; + this.xrCheckBox213.SizeF = new System.Drawing.SizeF(24.11375F, 21.99957F); + this.xrCheckBox213.StylePriority.UseBorders = false; + this.xrCheckBox213.StylePriority.UseFont = false; + this.xrCheckBox213.StylePriority.UseTextAlignment = false; + this.xrCheckBox213.Text = " "; + this.xrCheckBox213.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox215 + // + this.xrCheckBox215.BackColor = System.Drawing.Color.Transparent; + this.xrCheckBox215.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox215.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox215.LocationFloat = new DevExpress.Utils.PointFloat(3.142389F, 616.5512F); + this.xrCheckBox215.Name = "xrCheckBox215"; + this.xrCheckBox215.SizeF = new System.Drawing.SizeF(24.11375F, 22F); + this.xrCheckBox215.StylePriority.UseBackColor = false; + this.xrCheckBox215.StylePriority.UseBorders = false; + this.xrCheckBox215.StylePriority.UseFont = false; + this.xrCheckBox215.StylePriority.UseTextAlignment = false; + this.xrCheckBox215.Text = " "; + this.xrCheckBox215.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel224 + // + this.xrLabel224.BorderColor = System.Drawing.Color.Black; + this.xrLabel224.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel224.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel224.ForeColor = System.Drawing.Color.Black; + this.xrLabel224.LocationFloat = new DevExpress.Utils.PointFloat(51.25925F, 616.5513F); + this.xrLabel224.Name = "xrLabel224"; + this.xrLabel224.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel224.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel224.StylePriority.UseBorderColor = false; + this.xrLabel224.StylePriority.UseBorders = false; + this.xrLabel224.StylePriority.UseFont = false; + this.xrLabel224.StylePriority.UseForeColor = false; + this.xrLabel224.StylePriority.UseTextAlignment = false; + this.xrLabel224.Text = "4. Quartal: "; + this.xrLabel224.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel219 + // + this.xrLabel219.BorderColor = System.Drawing.Color.Black; + this.xrLabel219.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel219.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel219.ForeColor = System.Drawing.Color.Red; + this.xrLabel219.LocationFloat = new DevExpress.Utils.PointFloat(27.25915F, 616.5513F); + this.xrLabel219.Name = "xrLabel219"; + this.xrLabel219.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel219.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel219.StylePriority.UseBorderColor = false; + this.xrLabel219.StylePriority.UseBorders = false; + this.xrLabel219.StylePriority.UseFont = false; + this.xrLabel219.StylePriority.UseForeColor = false; + this.xrLabel219.StylePriority.UseTextAlignment = false; + this.xrLabel219.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel218 + // + this.xrLabel218.BorderColor = System.Drawing.Color.Black; + this.xrLabel218.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel218.CanGrow = false; + this.xrLabel218.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel218.ForeColor = System.Drawing.Color.Red; + this.xrLabel218.LocationFloat = new DevExpress.Utils.PointFloat(27.25924F, 594.5515F); + this.xrLabel218.Name = "xrLabel218"; + this.xrLabel218.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel218.SizeF = new System.Drawing.SizeF(23.97227F, 22F); + this.xrLabel218.StylePriority.UseBorderColor = false; + this.xrLabel218.StylePriority.UseBorders = false; + this.xrLabel218.StylePriority.UseFont = false; + this.xrLabel218.StylePriority.UseForeColor = false; + this.xrLabel218.StylePriority.UseTextAlignment = false; + this.xrLabel218.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox214 + // + this.xrCheckBox214.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox214.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox214.LocationFloat = new DevExpress.Utils.PointFloat(3.142421F, 594.5516F); + this.xrCheckBox214.Name = "xrCheckBox214"; + this.xrCheckBox214.SizeF = new System.Drawing.SizeF(24.11375F, 21.99963F); + this.xrCheckBox214.StylePriority.UseBorders = false; + this.xrCheckBox214.StylePriority.UseFont = false; + this.xrCheckBox214.StylePriority.UseTextAlignment = false; + this.xrCheckBox214.Text = " "; + this.xrCheckBox214.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel217 + // + this.xrLabel217.BorderColor = System.Drawing.Color.Black; + this.xrLabel217.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel217.CanGrow = false; + this.xrLabel217.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel217.ForeColor = System.Drawing.Color.Black; + this.xrLabel217.LocationFloat = new DevExpress.Utils.PointFloat(51.23158F, 594.5515F); + this.xrLabel217.Name = "xrLabel217"; + this.xrLabel217.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel217.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel217.StylePriority.UseBorderColor = false; + this.xrLabel217.StylePriority.UseBorders = false; + this.xrLabel217.StylePriority.UseFont = false; + this.xrLabel217.StylePriority.UseForeColor = false; + this.xrLabel217.StylePriority.UseTextAlignment = false; + this.xrLabel217.Text = "3. Quartal: "; + this.xrLabel217.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel262 + // + this.xrLabel262.BorderColor = System.Drawing.Color.Black; + this.xrLabel262.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel262.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel262.ForeColor = System.Drawing.Color.Black; + this.xrLabel262.LocationFloat = new DevExpress.Utils.PointFloat(50.96649F, 782.427F); + this.xrLabel262.Name = "xrLabel262"; + this.xrLabel262.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel262.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel262.StylePriority.UseBorderColor = false; + this.xrLabel262.StylePriority.UseBorders = false; + this.xrLabel262.StylePriority.UseFont = false; + this.xrLabel262.StylePriority.UseForeColor = false; + this.xrLabel262.StylePriority.UseTextAlignment = false; + this.xrLabel262.Text = "Unentschuldigt: "; + this.xrLabel262.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel261 + // + this.xrLabel261.BorderColor = System.Drawing.Color.Black; + this.xrLabel261.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel261.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel261.ForeColor = System.Drawing.Color.Black; + this.xrLabel261.LocationFloat = new DevExpress.Utils.PointFloat(51.11468F, 742.4265F); + this.xrLabel261.Name = "xrLabel261"; + this.xrLabel261.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel261.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel261.StylePriority.UseBorderColor = false; + this.xrLabel261.StylePriority.UseBorders = false; + this.xrLabel261.StylePriority.UseFont = false; + this.xrLabel261.StylePriority.UseForeColor = false; + this.xrLabel261.StylePriority.UseTextAlignment = false; + this.xrLabel261.Text = "2. Quartal"; + this.xrLabel261.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel260 + // + this.xrLabel260.BorderColor = System.Drawing.Color.Black; + this.xrLabel260.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel260.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel260.ForeColor = System.Drawing.Color.Red; + this.xrLabel260.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 742.4266F); + this.xrLabel260.Name = "xrLabel260"; + this.xrLabel260.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel260.SizeF = new System.Drawing.SizeF(23.73813F, 22F); + this.xrLabel260.StylePriority.UseBorderColor = false; + this.xrLabel260.StylePriority.UseBorders = false; + this.xrLabel260.StylePriority.UseFont = false; + this.xrLabel260.StylePriority.UseForeColor = false; + this.xrLabel260.StylePriority.UseTextAlignment = false; + this.xrLabel260.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox219 + // + this.xrCheckBox219.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox219.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox219.LocationFloat = new DevExpress.Utils.PointFloat(3.152688F, 742.4266F); + this.xrCheckBox219.Name = "xrCheckBox219"; + this.xrCheckBox219.SizeF = new System.Drawing.SizeF(23.95248F, 22F); + this.xrCheckBox219.StylePriority.UseBorders = false; + this.xrCheckBox219.StylePriority.UseFont = false; + this.xrCheckBox219.StylePriority.UseTextAlignment = false; + this.xrCheckBox219.Text = " "; + this.xrCheckBox219.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel259 + // + this.xrLabel259.BorderColor = System.Drawing.Color.Black; + this.xrLabel259.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel259.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel259.ForeColor = System.Drawing.Color.Black; + this.xrLabel259.LocationFloat = new DevExpress.Utils.PointFloat(51.11468F, 764.4273F); + this.xrLabel259.Name = "xrLabel259"; + this.xrLabel259.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel259.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel259.StylePriority.UseBorderColor = false; + this.xrLabel259.StylePriority.UseBorders = false; + this.xrLabel259.StylePriority.UseFont = false; + this.xrLabel259.StylePriority.UseForeColor = false; + this.xrLabel259.StylePriority.UseTextAlignment = false; + this.xrLabel259.Text = "Entschuldigt: "; + this.xrLabel259.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox220 + // + this.xrCheckBox220.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox220.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox220.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 764.4272F); + this.xrCheckBox220.Name = "xrCheckBox220"; + this.xrCheckBox220.SizeF = new System.Drawing.SizeF(23.73759F, 17.99994F); + this.xrCheckBox220.StylePriority.UseBorders = false; + this.xrCheckBox220.StylePriority.UseFont = false; + this.xrCheckBox220.StylePriority.UseTextAlignment = false; + this.xrCheckBox220.Text = " "; + this.xrCheckBox220.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel258 + // + this.xrLabel258.BorderColor = System.Drawing.Color.Black; + this.xrLabel258.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel258.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel258.ForeColor = System.Drawing.Color.Red; + this.xrLabel258.LocationFloat = new DevExpress.Utils.PointFloat(3.152688F, 764.4272F); + this.xrLabel258.Name = "xrLabel258"; + this.xrLabel258.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel258.SizeF = new System.Drawing.SizeF(23.95248F, 17.99994F); + this.xrLabel258.StylePriority.UseBorderColor = false; + this.xrLabel258.StylePriority.UseBorders = false; + this.xrLabel258.StylePriority.UseFont = false; + this.xrLabel258.StylePriority.UseForeColor = false; + this.xrLabel258.StylePriority.UseTextAlignment = false; + this.xrLabel258.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel257 + // + this.xrLabel257.BorderColor = System.Drawing.Color.Black; + this.xrLabel257.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel257.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel257.ForeColor = System.Drawing.Color.Red; + this.xrLabel257.LocationFloat = new DevExpress.Utils.PointFloat(3.152688F, 782.4269F); + this.xrLabel257.Name = "xrLabel257"; + this.xrLabel257.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel257.SizeF = new System.Drawing.SizeF(23.81096F, 18F); + this.xrLabel257.StylePriority.UseBorderColor = false; + this.xrLabel257.StylePriority.UseBorders = false; + this.xrLabel257.StylePriority.UseFont = false; + this.xrLabel257.StylePriority.UseForeColor = false; + this.xrLabel257.StylePriority.UseTextAlignment = false; + this.xrLabel257.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel279 + // + this.xrLabel279.BorderColor = System.Drawing.Color.Black; + this.xrLabel279.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel279.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel279.ForeColor = System.Drawing.Color.Red; + this.xrLabel279.LocationFloat = new DevExpress.Utils.PointFloat(3.152688F, 880.4276F); + this.xrLabel279.Name = "xrLabel279"; + this.xrLabel279.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel279.SizeF = new System.Drawing.SizeF(23.65624F, 17.99994F); + this.xrLabel279.StylePriority.UseBorderColor = false; + this.xrLabel279.StylePriority.UseBorders = false; + this.xrLabel279.StylePriority.UseFont = false; + this.xrLabel279.StylePriority.UseForeColor = false; + this.xrLabel279.StylePriority.UseTextAlignment = false; + this.xrLabel279.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox226 + // + this.xrCheckBox226.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox226.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox226.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 880.4276F); + this.xrCheckBox226.Name = "xrCheckBox226"; + this.xrCheckBox226.SizeF = new System.Drawing.SizeF(23.44128F, 17.99994F); + this.xrCheckBox226.StylePriority.UseBorders = false; + this.xrCheckBox226.StylePriority.UseFont = false; + this.xrCheckBox226.StylePriority.UseTextAlignment = false; + this.xrCheckBox226.Text = " "; + this.xrCheckBox226.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel272 + // + this.xrLabel272.BorderColor = System.Drawing.Color.Black; + this.xrLabel272.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel272.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel272.ForeColor = System.Drawing.Color.Black; + this.xrLabel272.LocationFloat = new DevExpress.Utils.PointFloat(50.81836F, 880.4277F); + this.xrLabel272.Name = "xrLabel272"; + this.xrLabel272.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel272.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel272.StylePriority.UseBorderColor = false; + this.xrLabel272.StylePriority.UseBorders = false; + this.xrLabel272.StylePriority.UseFont = false; + this.xrLabel272.StylePriority.UseForeColor = false; + this.xrLabel272.StylePriority.UseTextAlignment = false; + this.xrLabel272.Text = "Entschuldigt: "; + this.xrLabel272.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox225 + // + this.xrCheckBox225.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox225.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox225.LocationFloat = new DevExpress.Utils.PointFloat(3.152688F, 858.4274F); + this.xrCheckBox225.Name = "xrCheckBox225"; + this.xrCheckBox225.SizeF = new System.Drawing.SizeF(23.65624F, 22F); + this.xrCheckBox225.StylePriority.UseBorders = false; + this.xrCheckBox225.StylePriority.UseFont = false; + this.xrCheckBox225.StylePriority.UseTextAlignment = false; + this.xrCheckBox225.Text = " "; + this.xrCheckBox225.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel271 + // + this.xrLabel271.BorderColor = System.Drawing.Color.Black; + this.xrLabel271.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel271.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel271.ForeColor = System.Drawing.Color.Red; + this.xrLabel271.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 858.4274F); + this.xrLabel271.Name = "xrLabel271"; + this.xrLabel271.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel271.SizeF = new System.Drawing.SizeF(23.44189F, 22F); + this.xrLabel271.StylePriority.UseBorderColor = false; + this.xrLabel271.StylePriority.UseBorders = false; + this.xrLabel271.StylePriority.UseFont = false; + this.xrLabel271.StylePriority.UseForeColor = false; + this.xrLabel271.StylePriority.UseTextAlignment = false; + this.xrLabel271.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel270 + // + this.xrLabel270.BorderColor = System.Drawing.Color.Black; + this.xrLabel270.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel270.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel270.ForeColor = System.Drawing.Color.Black; + this.xrLabel270.LocationFloat = new DevExpress.Utils.PointFloat(50.81836F, 858.4274F); + this.xrLabel270.Name = "xrLabel270"; + this.xrLabel270.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel270.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel270.StylePriority.UseBorderColor = false; + this.xrLabel270.StylePriority.UseBorders = false; + this.xrLabel270.StylePriority.UseFont = false; + this.xrLabel270.StylePriority.UseForeColor = false; + this.xrLabel270.StylePriority.UseTextAlignment = false; + this.xrLabel270.Text = "4. Quartal"; + this.xrLabel270.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel268 + // + this.xrLabel268.BorderColor = System.Drawing.Color.Black; + this.xrLabel268.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel268.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel268.ForeColor = System.Drawing.Color.Black; + this.xrLabel268.LocationFloat = new DevExpress.Utils.PointFloat(50.81836F, 840.4272F); + this.xrLabel268.Name = "xrLabel268"; + this.xrLabel268.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel268.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel268.StylePriority.UseBorderColor = false; + this.xrLabel268.StylePriority.UseBorders = false; + this.xrLabel268.StylePriority.UseFont = false; + this.xrLabel268.StylePriority.UseForeColor = false; + this.xrLabel268.StylePriority.UseTextAlignment = false; + this.xrLabel268.Text = "Unentschuldigt: "; + this.xrLabel268.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel267 + // + this.xrLabel267.BorderColor = System.Drawing.Color.Black; + this.xrLabel267.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel267.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel267.ForeColor = System.Drawing.Color.Black; + this.xrLabel267.LocationFloat = new DevExpress.Utils.PointFloat(50.96649F, 800.4269F); + this.xrLabel267.Name = "xrLabel267"; + this.xrLabel267.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel267.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel267.StylePriority.UseBorderColor = false; + this.xrLabel267.StylePriority.UseBorders = false; + this.xrLabel267.StylePriority.UseFont = false; + this.xrLabel267.StylePriority.UseForeColor = false; + this.xrLabel267.StylePriority.UseTextAlignment = false; + this.xrLabel267.Text = "3. Quartal"; + this.xrLabel267.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel266 + // + this.xrLabel266.BorderColor = System.Drawing.Color.Black; + this.xrLabel266.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel266.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel266.ForeColor = System.Drawing.Color.Red; + this.xrLabel266.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 800.4268F); + this.xrLabel266.Name = "xrLabel266"; + this.xrLabel266.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel266.SizeF = new System.Drawing.SizeF(23.58999F, 22F); + this.xrLabel266.StylePriority.UseBorderColor = false; + this.xrLabel266.StylePriority.UseBorders = false; + this.xrLabel266.StylePriority.UseFont = false; + this.xrLabel266.StylePriority.UseForeColor = false; + this.xrLabel266.StylePriority.UseTextAlignment = false; + this.xrLabel266.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox222 + // + this.xrCheckBox222.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox222.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox222.LocationFloat = new DevExpress.Utils.PointFloat(3.152688F, 800.4268F); + this.xrCheckBox222.Name = "xrCheckBox222"; + this.xrCheckBox222.SizeF = new System.Drawing.SizeF(23.80435F, 22F); + this.xrCheckBox222.StylePriority.UseBorders = false; + this.xrCheckBox222.StylePriority.UseFont = false; + this.xrCheckBox222.StylePriority.UseTextAlignment = false; + this.xrCheckBox222.Text = " "; + this.xrCheckBox222.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel265 + // + this.xrLabel265.BorderColor = System.Drawing.Color.Black; + this.xrLabel265.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel265.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel265.ForeColor = System.Drawing.Color.Black; + this.xrLabel265.LocationFloat = new DevExpress.Utils.PointFloat(50.96649F, 822.427F); + this.xrLabel265.Name = "xrLabel265"; + this.xrLabel265.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel265.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel265.StylePriority.UseBorderColor = false; + this.xrLabel265.StylePriority.UseBorders = false; + this.xrLabel265.StylePriority.UseFont = false; + this.xrLabel265.StylePriority.UseForeColor = false; + this.xrLabel265.StylePriority.UseTextAlignment = false; + this.xrLabel265.Text = "Entschuldigt: "; + this.xrLabel265.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox223 + // + this.xrCheckBox223.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox223.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox223.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 822.4269F); + this.xrCheckBox223.Name = "xrCheckBox223"; + this.xrCheckBox223.SizeF = new System.Drawing.SizeF(23.58936F, 18F); + this.xrCheckBox223.StylePriority.UseBorders = false; + this.xrCheckBox223.StylePriority.UseFont = false; + this.xrCheckBox223.StylePriority.UseTextAlignment = false; + this.xrCheckBox223.Text = " "; + this.xrCheckBox223.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox224 + // + this.xrCheckBox224.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox224.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox224.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 840.4271F); + this.xrCheckBox224.Name = "xrCheckBox224"; + this.xrCheckBox224.SizeF = new System.Drawing.SizeF(23.44189F, 18F); + this.xrCheckBox224.StylePriority.UseBorders = false; + this.xrCheckBox224.StylePriority.UseFont = false; + this.xrCheckBox224.StylePriority.UseTextAlignment = false; + this.xrCheckBox224.Text = " "; + this.xrCheckBox224.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel264 + // + this.xrLabel264.BorderColor = System.Drawing.Color.Black; + this.xrLabel264.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel264.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel264.ForeColor = System.Drawing.Color.Red; + this.xrLabel264.LocationFloat = new DevExpress.Utils.PointFloat(3.152688F, 822.4269F); + this.xrLabel264.Name = "xrLabel264"; + this.xrLabel264.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel264.SizeF = new System.Drawing.SizeF(23.80435F, 18F); + this.xrLabel264.StylePriority.UseBorderColor = false; + this.xrLabel264.StylePriority.UseBorders = false; + this.xrLabel264.StylePriority.UseFont = false; + this.xrLabel264.StylePriority.UseForeColor = false; + this.xrLabel264.StylePriority.UseTextAlignment = false; + this.xrLabel264.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel263 + // + this.xrLabel263.BorderColor = System.Drawing.Color.Black; + this.xrLabel263.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel263.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel263.ForeColor = System.Drawing.Color.Red; + this.xrLabel263.LocationFloat = new DevExpress.Utils.PointFloat(3.152688F, 840.4271F); + this.xrLabel263.Name = "xrLabel263"; + this.xrLabel263.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel263.SizeF = new System.Drawing.SizeF(23.66279F, 18F); + this.xrLabel263.StylePriority.UseBorderColor = false; + this.xrLabel263.StylePriority.UseBorders = false; + this.xrLabel263.StylePriority.UseFont = false; + this.xrLabel263.StylePriority.UseForeColor = false; + this.xrLabel263.StylePriority.UseTextAlignment = false; + this.xrLabel263.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel294 + // + this.xrLabel294.BorderColor = System.Drawing.Color.Black; + this.xrLabel294.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel294.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel294.ForeColor = System.Drawing.Color.Black; + this.xrLabel294.LocationFloat = new DevExpress.Utils.PointFloat(403.7177F, 538.9266F); + this.xrLabel294.Name = "xrLabel294"; + this.xrLabel294.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel294.SizeF = new System.Drawing.SizeF(270.5642F, 18F); + this.xrLabel294.StylePriority.UseBorderColor = false; + this.xrLabel294.StylePriority.UseBorders = false; + this.xrLabel294.StylePriority.UseFont = false; + this.xrLabel294.StylePriority.UseForeColor = false; + this.xrLabel294.StylePriority.UseTextAlignment = false; + this.xrLabel294.Text = "Sonstiges:"; + this.xrLabel294.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel293 + // + this.xrLabel293.BorderColor = System.Drawing.Color.Black; + this.xrLabel293.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel293.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel293.ForeColor = System.Drawing.Color.Black; + this.xrLabel293.LocationFloat = new DevExpress.Utils.PointFloat(403.5902F, 520.9264F); + this.xrLabel293.Name = "xrLabel293"; + this.xrLabel293.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel293.SizeF = new System.Drawing.SizeF(270.692F, 17.99994F); + this.xrLabel293.StylePriority.UseBorderColor = false; + this.xrLabel293.StylePriority.UseBorders = false; + this.xrLabel293.StylePriority.UseFont = false; + this.xrLabel293.StylePriority.UseForeColor = false; + this.xrLabel293.StylePriority.UseTextAlignment = false; + this.xrLabel293.Text = "Geringfügige Beschäftigung"; + this.xrLabel293.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox242 + // + this.xrCheckBox242.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox242.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox242.LocationFloat = new DevExpress.Utils.PointFloat(379.4254F, 520.9268F); + this.xrCheckBox242.Name = "xrCheckBox242"; + this.xrCheckBox242.SizeF = new System.Drawing.SizeF(23.98883F, 18F); + this.xrCheckBox242.StylePriority.UseBorders = false; + this.xrCheckBox242.StylePriority.UseFont = false; + this.xrCheckBox242.StylePriority.UseTextAlignment = false; + this.xrCheckBox242.Text = " "; + this.xrCheckBox242.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox243 + // + this.xrCheckBox243.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox243.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox243.LocationFloat = new DevExpress.Utils.PointFloat(379.6319F, 538.9266F); + this.xrCheckBox243.Name = "xrCheckBox243"; + this.xrCheckBox243.SizeF = new System.Drawing.SizeF(24F, 18F); + this.xrCheckBox243.StylePriority.UseBorders = false; + this.xrCheckBox243.StylePriority.UseFont = false; + this.xrCheckBox243.StylePriority.UseTextAlignment = false; + this.xrCheckBox243.Text = " "; + this.xrCheckBox243.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel292 + // + this.xrLabel292.BorderColor = System.Drawing.Color.Black; + this.xrLabel292.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel292.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel292.ForeColor = System.Drawing.Color.Red; + this.xrLabel292.LocationFloat = new DevExpress.Utils.PointFloat(355.5944F, 520.9264F); + this.xrLabel292.Name = "xrLabel292"; + this.xrLabel292.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel292.SizeF = new System.Drawing.SizeF(23.83102F, 18F); + this.xrLabel292.StylePriority.UseBorderColor = false; + this.xrLabel292.StylePriority.UseBorders = false; + this.xrLabel292.StylePriority.UseFont = false; + this.xrLabel292.StylePriority.UseForeColor = false; + this.xrLabel292.StylePriority.UseTextAlignment = false; + this.xrLabel292.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel290 + // + this.xrLabel290.BorderColor = System.Drawing.Color.Black; + this.xrLabel290.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel290.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel290.ForeColor = System.Drawing.Color.Red; + this.xrLabel290.LocationFloat = new DevExpress.Utils.PointFloat(355.6359F, 538.9266F); + this.xrLabel290.Name = "xrLabel290"; + this.xrLabel290.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel290.SizeF = new System.Drawing.SizeF(23.99F, 18F); + this.xrLabel290.StylePriority.UseBorderColor = false; + this.xrLabel290.StylePriority.UseBorders = false; + this.xrLabel290.StylePriority.UseFont = false; + this.xrLabel290.StylePriority.UseForeColor = false; + this.xrLabel290.StylePriority.UseTextAlignment = false; + this.xrLabel290.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel289 + // + this.xrLabel289.BorderColor = System.Drawing.Color.Black; + this.xrLabel289.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel289.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel289.ForeColor = System.Drawing.Color.Red; + this.xrLabel289.LocationFloat = new DevExpress.Utils.PointFloat(355.5527F, 502.9269F); + this.xrLabel289.Name = "xrLabel289"; + this.xrLabel289.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel289.SizeF = new System.Drawing.SizeF(23.87268F, 17.99951F); + this.xrLabel289.StylePriority.UseBorderColor = false; + this.xrLabel289.StylePriority.UseBorders = false; + this.xrLabel289.StylePriority.UseFont = false; + this.xrLabel289.StylePriority.UseForeColor = false; + this.xrLabel289.StylePriority.UseTextAlignment = false; + this.xrLabel289.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel288 + // + this.xrLabel288.BorderColor = System.Drawing.Color.Black; + this.xrLabel288.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel288.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel288.ForeColor = System.Drawing.Color.Red; + this.xrLabel288.LocationFloat = new DevExpress.Utils.PointFloat(355.5527F, 484.9266F); + this.xrLabel288.Name = "xrLabel288"; + this.xrLabel288.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel288.SizeF = new System.Drawing.SizeF(23.98F, 18F); + this.xrLabel288.StylePriority.UseBorderColor = false; + this.xrLabel288.StylePriority.UseBorders = false; + this.xrLabel288.StylePriority.UseFont = false; + this.xrLabel288.StylePriority.UseForeColor = false; + this.xrLabel288.StylePriority.UseTextAlignment = false; + this.xrLabel288.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox241 + // + this.xrCheckBox241.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox241.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox241.LocationFloat = new DevExpress.Utils.PointFloat(379.5424F, 502.9269F); + this.xrCheckBox241.Name = "xrCheckBox241"; + this.xrCheckBox241.SizeF = new System.Drawing.SizeF(24.00339F, 17.99994F); + this.xrCheckBox241.StylePriority.UseBorders = false; + this.xrCheckBox241.StylePriority.UseFont = false; + this.xrCheckBox241.StylePriority.UseTextAlignment = false; + this.xrCheckBox241.Text = " "; + this.xrCheckBox241.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox240 + // + this.xrCheckBox240.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox240.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox240.LocationFloat = new DevExpress.Utils.PointFloat(379.5417F, 484.9266F); + this.xrCheckBox240.Name = "xrCheckBox240"; + this.xrCheckBox240.SizeF = new System.Drawing.SizeF(24F, 18F); + this.xrCheckBox240.StylePriority.UseBorders = false; + this.xrCheckBox240.StylePriority.UseFont = false; + this.xrCheckBox240.StylePriority.UseTextAlignment = false; + this.xrCheckBox240.Text = " "; + this.xrCheckBox240.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel287 + // + this.xrLabel287.BorderColor = System.Drawing.Color.Black; + this.xrLabel287.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel287.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel287.ForeColor = System.Drawing.Color.Black; + this.xrLabel287.LocationFloat = new DevExpress.Utils.PointFloat(403.5423F, 484.9266F); + this.xrLabel287.Name = "xrLabel287"; + this.xrLabel287.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel287.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel287.StylePriority.UseBorderColor = false; + this.xrLabel287.StylePriority.UseBorders = false; + this.xrLabel287.StylePriority.UseFont = false; + this.xrLabel287.StylePriority.UseForeColor = false; + this.xrLabel287.StylePriority.UseTextAlignment = false; + this.xrLabel287.Text = "Arbeitsverhältnis in Vollzeit"; + this.xrLabel287.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox239 + // + this.xrCheckBox239.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox239.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox239.LocationFloat = new DevExpress.Utils.PointFloat(355.5527F, 462.9266F); + this.xrCheckBox239.Name = "xrCheckBox239"; + this.xrCheckBox239.SizeF = new System.Drawing.SizeF(23.98F, 22F); + this.xrCheckBox239.StylePriority.UseBorders = false; + this.xrCheckBox239.StylePriority.UseFont = false; + this.xrCheckBox239.StylePriority.UseTextAlignment = false; + this.xrCheckBox239.Text = " "; + this.xrCheckBox239.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel286 + // + this.xrLabel286.BorderColor = System.Drawing.Color.Black; + this.xrLabel286.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel286.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel286.ForeColor = System.Drawing.Color.Red; + this.xrLabel286.LocationFloat = new DevExpress.Utils.PointFloat(379.5424F, 462.9266F); + this.xrLabel286.Name = "xrLabel286"; + this.xrLabel286.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel286.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel286.StylePriority.UseBorderColor = false; + this.xrLabel286.StylePriority.UseBorders = false; + this.xrLabel286.StylePriority.UseFont = false; + this.xrLabel286.StylePriority.UseForeColor = false; + this.xrLabel286.StylePriority.UseTextAlignment = false; + this.xrLabel286.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel285 + // + this.xrLabel285.BorderColor = System.Drawing.Color.Black; + this.xrLabel285.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel285.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel285.ForeColor = System.Drawing.Color.Black; + this.xrLabel285.LocationFloat = new DevExpress.Utils.PointFloat(403.5423F, 462.9266F); + this.xrLabel285.Name = "xrLabel285"; + this.xrLabel285.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel285.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel285.StylePriority.UseBorderColor = false; + this.xrLabel285.StylePriority.UseBorders = false; + this.xrLabel285.StylePriority.UseFont = false; + this.xrLabel285.StylePriority.UseForeColor = false; + this.xrLabel285.StylePriority.UseTextAlignment = false; + this.xrLabel285.Text = "Allgemeiner Arbeitsmarkt"; + this.xrLabel285.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel281 + // + this.xrLabel281.BorderColor = System.Drawing.Color.Black; + this.xrLabel281.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel281.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel281.ForeColor = System.Drawing.Color.Black; + this.xrLabel281.LocationFloat = new DevExpress.Utils.PointFloat(403.5457F, 502.9269F); + this.xrLabel281.Name = "xrLabel281"; + this.xrLabel281.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel281.SizeF = new System.Drawing.SizeF(270.74F, 17.99951F); + this.xrLabel281.StylePriority.UseBorderColor = false; + this.xrLabel281.StylePriority.UseBorders = false; + this.xrLabel281.StylePriority.UseFont = false; + this.xrLabel281.StylePriority.UseForeColor = false; + this.xrLabel281.StylePriority.UseTextAlignment = false; + this.xrLabel281.Text = "Arbeitsverhältnis in Teilzeit"; + this.xrLabel281.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel331 + // + this.xrLabel331.BorderColor = System.Drawing.Color.Black; + this.xrLabel331.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel331.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel331.ForeColor = System.Drawing.Color.Red; + this.xrLabel331.LocationFloat = new DevExpress.Utils.PointFloat(379.5417F, 417.0514F); + this.xrLabel331.Name = "xrLabel331"; + this.xrLabel331.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel331.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel331.StylePriority.UseBorderColor = false; + this.xrLabel331.StylePriority.UseBorders = false; + this.xrLabel331.StylePriority.UseFont = false; + this.xrLabel331.StylePriority.UseForeColor = false; + this.xrLabel331.StylePriority.UseTextAlignment = false; + this.xrLabel331.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel330 + // + this.xrLabel330.BorderColor = System.Drawing.Color.Black; + this.xrLabel330.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel330.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel330.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel330.LocationFloat = new DevExpress.Utils.PointFloat(403.5421F, 417.0514F); + this.xrLabel330.Name = "xrLabel330"; + this.xrLabel330.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel330.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel330.StylePriority.UseBorderColor = false; + this.xrLabel330.StylePriority.UseBorders = false; + this.xrLabel330.StylePriority.UseFont = false; + this.xrLabel330.StylePriority.UseForeColor = false; + this.xrLabel330.StylePriority.UseTextAlignment = false; + this.xrLabel330.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel303 + // + this.xrLabel303.BorderColor = System.Drawing.Color.Black; + this.xrLabel303.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel303.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel303.ForeColor = System.Drawing.Color.Red; + this.xrLabel303.LocationFloat = new DevExpress.Utils.PointFloat(379.542F, 438.9265F); + this.xrLabel303.Name = "xrLabel303"; + this.xrLabel303.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel303.SizeF = new System.Drawing.SizeF(24.00002F, 24F); + this.xrLabel303.StylePriority.UseBorderColor = false; + this.xrLabel303.StylePriority.UseBorders = false; + this.xrLabel303.StylePriority.UseFont = false; + this.xrLabel303.StylePriority.UseForeColor = false; + this.xrLabel303.StylePriority.UseTextAlignment = false; + this.xrLabel303.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel302 + // + this.xrLabel302.BorderColor = System.Drawing.Color.Black; + this.xrLabel302.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel302.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel302.ForeColor = System.Drawing.Color.Red; + this.xrLabel302.LocationFloat = new DevExpress.Utils.PointFloat(355.5489F, 438.9265F); + this.xrLabel302.Name = "xrLabel302"; + this.xrLabel302.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel302.SizeF = new System.Drawing.SizeF(23.99F, 24F); + this.xrLabel302.StylePriority.UseBorderColor = false; + this.xrLabel302.StylePriority.UseBorders = false; + this.xrLabel302.StylePriority.UseFont = false; + this.xrLabel302.StylePriority.UseForeColor = false; + this.xrLabel302.StylePriority.UseTextAlignment = false; + this.xrLabel302.Text = "E."; + this.xrLabel302.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel301 + // + this.xrLabel301.BorderColor = System.Drawing.Color.Black; + this.xrLabel301.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel301.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel301.ForeColor = System.Drawing.Color.Red; + this.xrLabel301.LocationFloat = new DevExpress.Utils.PointFloat(403.5423F, 438.9265F); + this.xrLabel301.Name = "xrLabel301"; + this.xrLabel301.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel301.SizeF = new System.Drawing.SizeF(270.7433F, 24F); + this.xrLabel301.StylePriority.UseBorderColor = false; + this.xrLabel301.StylePriority.UseBorders = false; + this.xrLabel301.StylePriority.UseFont = false; + this.xrLabel301.StylePriority.UseForeColor = false; + this.xrLabel301.StylePriority.UseTextAlignment = false; + this.xrLabel301.Text = "Beschäftigung nach dem Zuverdienst"; + this.xrLabel301.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel300 + // + this.xrLabel300.BorderColor = System.Drawing.Color.Black; + this.xrLabel300.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel300.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel300.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel300.LocationFloat = new DevExpress.Utils.PointFloat(355.5489F, 417.0514F); + this.xrLabel300.Name = "xrLabel300"; + this.xrLabel300.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel300.SizeF = new System.Drawing.SizeF(23.99F, 21.87F); + this.xrLabel300.StylePriority.UseBorderColor = false; + this.xrLabel300.StylePriority.UseBorders = false; + this.xrLabel300.StylePriority.UseFont = false; + this.xrLabel300.StylePriority.UseForeColor = false; + this.xrLabel300.StylePriority.UseTextAlignment = false; + this.xrLabel300.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel359 + // + this.xrLabel359.BorderColor = System.Drawing.Color.Black; + this.xrLabel359.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel359.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel359.ForeColor = System.Drawing.Color.Black; + this.xrLabel359.LocationFloat = new DevExpress.Utils.PointFloat(403.7176F, 307.0514F); + this.xrLabel359.Name = "xrLabel359"; + this.xrLabel359.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel359.SizeF = new System.Drawing.SizeF(270.5365F, 22F); + this.xrLabel359.StylePriority.UseBorderColor = false; + this.xrLabel359.StylePriority.UseBorders = false; + this.xrLabel359.StylePriority.UseFont = false; + this.xrLabel359.StylePriority.UseForeColor = false; + this.xrLabel359.StylePriority.UseTextAlignment = false; + this.xrLabel359.Text = "Kündigung durch ZV-Platzanbieter"; + this.xrLabel359.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox234 + // + this.xrCheckBox234.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox234.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox234.LocationFloat = new DevExpress.Utils.PointFloat(355.7246F, 307.0514F); + this.xrCheckBox234.Name = "xrCheckBox234"; + this.xrCheckBox234.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox234.StylePriority.UseBorders = false; + this.xrCheckBox234.StylePriority.UseFont = false; + this.xrCheckBox234.StylePriority.UseTextAlignment = false; + this.xrCheckBox234.Text = " "; + this.xrCheckBox234.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel358 + // + this.xrLabel358.BorderColor = System.Drawing.Color.Black; + this.xrLabel358.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel358.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel358.ForeColor = System.Drawing.Color.Red; + this.xrLabel358.LocationFloat = new DevExpress.Utils.PointFloat(379.7176F, 307.0514F); + this.xrLabel358.Name = "xrLabel358"; + this.xrLabel358.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel358.SizeF = new System.Drawing.SizeF(24.00006F, 22F); + this.xrLabel358.StylePriority.UseBorderColor = false; + this.xrLabel358.StylePriority.UseBorders = false; + this.xrLabel358.StylePriority.UseFont = false; + this.xrLabel358.StylePriority.UseForeColor = false; + this.xrLabel358.StylePriority.UseTextAlignment = false; + this.xrLabel358.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel357 + // + this.xrLabel357.BorderColor = System.Drawing.Color.Black; + this.xrLabel357.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel357.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel357.ForeColor = System.Drawing.Color.Red; + this.xrLabel357.LocationFloat = new DevExpress.Utils.PointFloat(379.7176F, 329.0515F); + this.xrLabel357.Name = "xrLabel357"; + this.xrLabel357.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel357.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel357.StylePriority.UseBorderColor = false; + this.xrLabel357.StylePriority.UseBorders = false; + this.xrLabel357.StylePriority.UseFont = false; + this.xrLabel357.StylePriority.UseForeColor = false; + this.xrLabel357.StylePriority.UseTextAlignment = false; + this.xrLabel357.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel356 + // + this.xrLabel356.BorderColor = System.Drawing.Color.Black; + this.xrLabel356.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel356.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel356.ForeColor = System.Drawing.Color.Black; + this.xrLabel356.LocationFloat = new DevExpress.Utils.PointFloat(403.7175F, 329.0512F); + this.xrLabel356.Name = "xrLabel356"; + this.xrLabel356.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel356.SizeF = new System.Drawing.SizeF(270.5643F, 22F); + this.xrLabel356.StylePriority.UseBorderColor = false; + this.xrLabel356.StylePriority.UseBorders = false; + this.xrLabel356.StylePriority.UseFont = false; + this.xrLabel356.StylePriority.UseForeColor = false; + this.xrLabel356.StylePriority.UseTextAlignment = false; + this.xrLabel356.Text = "Kündigung durch ZV-InArbeit"; + this.xrLabel356.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox235 + // + this.xrCheckBox235.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox235.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox235.LocationFloat = new DevExpress.Utils.PointFloat(355.7246F, 329.0515F); + this.xrCheckBox235.Name = "xrCheckBox235"; + this.xrCheckBox235.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox235.StylePriority.UseBorders = false; + this.xrCheckBox235.StylePriority.UseFont = false; + this.xrCheckBox235.StylePriority.UseTextAlignment = false; + this.xrCheckBox235.Text = " "; + this.xrCheckBox235.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox233 + // + this.xrCheckBox233.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox233.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox233.LocationFloat = new DevExpress.Utils.PointFloat(355.7246F, 285.0511F); + this.xrCheckBox233.Name = "xrCheckBox233"; + this.xrCheckBox233.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox233.StylePriority.UseBorders = false; + this.xrCheckBox233.StylePriority.UseFont = false; + this.xrCheckBox233.StylePriority.UseTextAlignment = false; + this.xrCheckBox233.Text = " "; + this.xrCheckBox233.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel355 + // + this.xrLabel355.BorderColor = System.Drawing.Color.Black; + this.xrLabel355.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel355.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel355.ForeColor = System.Drawing.Color.Black; + this.xrLabel355.LocationFloat = new DevExpress.Utils.PointFloat(403.7175F, 285.0511F); + this.xrLabel355.Name = "xrLabel355"; + this.xrLabel355.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel355.SizeF = new System.Drawing.SizeF(270.5643F, 22F); + this.xrLabel355.StylePriority.UseBorderColor = false; + this.xrLabel355.StylePriority.UseBorders = false; + this.xrLabel355.StylePriority.UseFont = false; + this.xrLabel355.StylePriority.UseForeColor = false; + this.xrLabel355.StylePriority.UseTextAlignment = false; + this.xrLabel355.Text = "Kündigung durch ZV-Teilnehmer"; + this.xrLabel355.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel354 + // + this.xrLabel354.BorderColor = System.Drawing.Color.Black; + this.xrLabel354.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel354.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel354.ForeColor = System.Drawing.Color.Red; + this.xrLabel354.LocationFloat = new DevExpress.Utils.PointFloat(379.7176F, 285.0511F); + this.xrLabel354.Name = "xrLabel354"; + this.xrLabel354.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel354.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel354.StylePriority.UseBorderColor = false; + this.xrLabel354.StylePriority.UseBorders = false; + this.xrLabel354.StylePriority.UseFont = false; + this.xrLabel354.StylePriority.UseForeColor = false; + this.xrLabel354.StylePriority.UseTextAlignment = false; + this.xrLabel354.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel353 + // + this.xrLabel353.BorderColor = System.Drawing.Color.Black; + this.xrLabel353.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel353.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel353.ForeColor = System.Drawing.Color.Red; + this.xrLabel353.LocationFloat = new DevExpress.Utils.PointFloat(379.7178F, 263.0513F); + this.xrLabel353.Name = "xrLabel353"; + this.xrLabel353.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel353.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel353.StylePriority.UseBorderColor = false; + this.xrLabel353.StylePriority.UseBorders = false; + this.xrLabel353.StylePriority.UseFont = false; + this.xrLabel353.StylePriority.UseForeColor = false; + this.xrLabel353.StylePriority.UseTextAlignment = false; + this.xrLabel353.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel352 + // + this.xrLabel352.BorderColor = System.Drawing.Color.Black; + this.xrLabel352.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel352.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel352.ForeColor = System.Drawing.Color.Black; + this.xrLabel352.LocationFloat = new DevExpress.Utils.PointFloat(403.7176F, 263.0513F); + this.xrLabel352.Name = "xrLabel352"; + this.xrLabel352.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel352.SizeF = new System.Drawing.SizeF(270.5643F, 22F); + this.xrLabel352.StylePriority.UseBorderColor = false; + this.xrLabel352.StylePriority.UseBorders = false; + this.xrLabel352.StylePriority.UseFont = false; + this.xrLabel352.StylePriority.UseForeColor = false; + this.xrLabel352.StylePriority.UseTextAlignment = false; + this.xrLabel352.Text = "Befristung:Teilnahme war zeitlich begrenzt"; + this.xrLabel352.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox232 + // + this.xrCheckBox232.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox232.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox232.LocationFloat = new DevExpress.Utils.PointFloat(355.7246F, 263.0513F); + this.xrCheckBox232.Name = "xrCheckBox232"; + this.xrCheckBox232.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox232.StylePriority.UseBorders = false; + this.xrCheckBox232.StylePriority.UseFont = false; + this.xrCheckBox232.StylePriority.UseTextAlignment = false; + this.xrCheckBox232.Text = " "; + this.xrCheckBox232.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel351 + // + this.xrLabel351.BorderColor = System.Drawing.Color.Black; + this.xrLabel351.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel351.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel351.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel351.LocationFloat = new DevExpress.Utils.PointFloat(403.7176F, 241.1765F); + this.xrLabel351.Name = "xrLabel351"; + this.xrLabel351.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel351.SizeF = new System.Drawing.SizeF(270.5643F, 21.87494F); + this.xrLabel351.StylePriority.UseBorderColor = false; + this.xrLabel351.StylePriority.UseBorders = false; + this.xrLabel351.StylePriority.UseFont = false; + this.xrLabel351.StylePriority.UseForeColor = false; + this.xrLabel351.StylePriority.UseTextAlignment = false; + this.xrLabel351.Text = "Gründe für das Ausscheiden"; + this.xrLabel351.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel350 + // + this.xrLabel350.BorderColor = System.Drawing.Color.Black; + this.xrLabel350.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel350.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel350.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel350.LocationFloat = new DevExpress.Utils.PointFloat(355.7246F, 241.1765F); + this.xrLabel350.Name = "xrLabel350"; + this.xrLabel350.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel350.SizeF = new System.Drawing.SizeF(23.99F, 21.87F); + this.xrLabel350.StylePriority.UseBorderColor = false; + this.xrLabel350.StylePriority.UseBorders = false; + this.xrLabel350.StylePriority.UseFont = false; + this.xrLabel350.StylePriority.UseForeColor = false; + this.xrLabel350.StylePriority.UseTextAlignment = false; + this.xrLabel350.Text = "2."; + this.xrLabel350.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel349 + // + this.xrLabel349.BorderColor = System.Drawing.Color.Black; + this.xrLabel349.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel349.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel349.ForeColor = System.Drawing.Color.Red; + this.xrLabel349.LocationFloat = new DevExpress.Utils.PointFloat(379.7178F, 241.1765F); + this.xrLabel349.Name = "xrLabel349"; + this.xrLabel349.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel349.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel349.StylePriority.UseBorderColor = false; + this.xrLabel349.StylePriority.UseBorders = false; + this.xrLabel349.StylePriority.UseFont = false; + this.xrLabel349.StylePriority.UseForeColor = false; + this.xrLabel349.StylePriority.UseTextAlignment = false; + this.xrLabel349.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel345 + // + this.xrLabel345.BorderColor = System.Drawing.Color.Black; + this.xrLabel345.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel345.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel345.ForeColor = System.Drawing.Color.Red; + this.xrLabel345.LocationFloat = new DevExpress.Utils.PointFloat(403.4285F, 107.3011F); + this.xrLabel345.Name = "xrLabel345"; + this.xrLabel345.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel345.SizeF = new System.Drawing.SizeF(270.7433F, 24F); + this.xrLabel345.StylePriority.UseBorderColor = false; + this.xrLabel345.StylePriority.UseBorders = false; + this.xrLabel345.StylePriority.UseFont = false; + this.xrLabel345.StylePriority.UseForeColor = false; + this.xrLabel345.StylePriority.UseTextAlignment = false; + this.xrLabel345.Text = "Ausscheiden aus dem Zuverdienst"; + this.xrLabel345.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel344 + // + this.xrLabel344.BorderColor = System.Drawing.Color.Black; + this.xrLabel344.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel344.Font = new System.Drawing.Font("Calibri", 11.5F, System.Drawing.FontStyle.Bold); + this.xrLabel344.ForeColor = System.Drawing.Color.Red; + this.xrLabel344.LocationFloat = new DevExpress.Utils.PointFloat(355.4354F, 107.3011F); + this.xrLabel344.Name = "xrLabel344"; + this.xrLabel344.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel344.SizeF = new System.Drawing.SizeF(23.99F, 24F); + this.xrLabel344.StylePriority.UseBorderColor = false; + this.xrLabel344.StylePriority.UseBorders = false; + this.xrLabel344.StylePriority.UseFont = false; + this.xrLabel344.StylePriority.UseForeColor = false; + this.xrLabel344.StylePriority.UseTextAlignment = false; + this.xrLabel344.Text = "D."; + this.xrLabel344.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel343 + // + this.xrLabel343.BorderColor = System.Drawing.Color.Black; + this.xrLabel343.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel343.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel343.ForeColor = System.Drawing.Color.Red; + this.xrLabel343.LocationFloat = new DevExpress.Utils.PointFloat(379.4285F, 107.3011F); + this.xrLabel343.Name = "xrLabel343"; + this.xrLabel343.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel343.SizeF = new System.Drawing.SizeF(24.00002F, 24F); + this.xrLabel343.StylePriority.UseBorderColor = false; + this.xrLabel343.StylePriority.UseBorders = false; + this.xrLabel343.StylePriority.UseFont = false; + this.xrLabel343.StylePriority.UseForeColor = false; + this.xrLabel343.StylePriority.UseTextAlignment = false; + this.xrLabel343.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel342 + // + this.xrLabel342.BorderColor = System.Drawing.Color.Black; + this.xrLabel342.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel342.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel342.ForeColor = System.Drawing.Color.Red; + this.xrLabel342.LocationFloat = new DevExpress.Utils.PointFloat(379.4285F, 131.3011F); + this.xrLabel342.Name = "xrLabel342"; + this.xrLabel342.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel342.SizeF = new System.Drawing.SizeF(24.00002F, 21.87494F); + this.xrLabel342.StylePriority.UseBorderColor = false; + this.xrLabel342.StylePriority.UseBorders = false; + this.xrLabel342.StylePriority.UseFont = false; + this.xrLabel342.StylePriority.UseForeColor = false; + this.xrLabel342.StylePriority.UseTextAlignment = false; + this.xrLabel342.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel341 + // + this.xrLabel341.BorderColor = System.Drawing.Color.Black; + this.xrLabel341.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel341.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel341.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel341.LocationFloat = new DevExpress.Utils.PointFloat(355.4354F, 131.3011F); + this.xrLabel341.Name = "xrLabel341"; + this.xrLabel341.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel341.SizeF = new System.Drawing.SizeF(23.99F, 21.87F); + this.xrLabel341.StylePriority.UseBorderColor = false; + this.xrLabel341.StylePriority.UseBorders = false; + this.xrLabel341.StylePriority.UseFont = false; + this.xrLabel341.StylePriority.UseForeColor = false; + this.xrLabel341.StylePriority.UseTextAlignment = false; + this.xrLabel341.Text = "1."; + this.xrLabel341.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel340 + // + this.xrLabel340.BorderColor = System.Drawing.Color.Black; + this.xrLabel340.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel340.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel340.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(176)))), ((int)(((byte)(80))))); + this.xrLabel340.LocationFloat = new DevExpress.Utils.PointFloat(403.4285F, 131.3011F); + this.xrLabel340.Name = "xrLabel340"; + this.xrLabel340.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel340.SizeF = new System.Drawing.SizeF(270.7433F, 21.87494F); + this.xrLabel340.StylePriority.UseBorderColor = false; + this.xrLabel340.StylePriority.UseBorders = false; + this.xrLabel340.StylePriority.UseFont = false; + this.xrLabel340.StylePriority.UseForeColor = false; + this.xrLabel340.StylePriority.UseTextAlignment = false; + this.xrLabel340.Text = "Zeitpunkt des Ausscheidens"; + this.xrLabel340.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox228 + // + this.xrCheckBox228.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox228.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox228.LocationFloat = new DevExpress.Utils.PointFloat(355.4354F, 153.1763F); + this.xrCheckBox228.Name = "xrCheckBox228"; + this.xrCheckBox228.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox228.StylePriority.UseBorders = false; + this.xrCheckBox228.StylePriority.UseFont = false; + this.xrCheckBox228.StylePriority.UseTextAlignment = false; + this.xrCheckBox228.Text = " "; + this.xrCheckBox228.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel339 + // + this.xrLabel339.BorderColor = System.Drawing.Color.Black; + this.xrLabel339.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel339.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel339.ForeColor = System.Drawing.Color.Black; + this.xrLabel339.LocationFloat = new DevExpress.Utils.PointFloat(403.4285F, 153.1763F); + this.xrLabel339.Name = "xrLabel339"; + this.xrLabel339.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel339.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel339.StylePriority.UseBorderColor = false; + this.xrLabel339.StylePriority.UseBorders = false; + this.xrLabel339.StylePriority.UseFont = false; + this.xrLabel339.StylePriority.UseForeColor = false; + this.xrLabel339.StylePriority.UseTextAlignment = false; + this.xrLabel339.Text = "Während der ZV-Erprobung"; + this.xrLabel339.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel338 + // + this.xrLabel338.BorderColor = System.Drawing.Color.Black; + this.xrLabel338.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel338.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel338.ForeColor = System.Drawing.Color.Red; + this.xrLabel338.LocationFloat = new DevExpress.Utils.PointFloat(379.4285F, 153.1763F); + this.xrLabel338.Name = "xrLabel338"; + this.xrLabel338.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel338.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel338.StylePriority.UseBorderColor = false; + this.xrLabel338.StylePriority.UseBorders = false; + this.xrLabel338.StylePriority.UseFont = false; + this.xrLabel338.StylePriority.UseForeColor = false; + this.xrLabel338.StylePriority.UseTextAlignment = false; + this.xrLabel338.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel337 + // + this.xrLabel337.BorderColor = System.Drawing.Color.Black; + this.xrLabel337.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel337.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel337.ForeColor = System.Drawing.Color.Red; + this.xrLabel337.LocationFloat = new DevExpress.Utils.PointFloat(379.6008F, 175.1761F); + this.xrLabel337.Name = "xrLabel337"; + this.xrLabel337.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel337.SizeF = new System.Drawing.SizeF(24F, 22F); + this.xrLabel337.StylePriority.UseBorderColor = false; + this.xrLabel337.StylePriority.UseBorders = false; + this.xrLabel337.StylePriority.UseFont = false; + this.xrLabel337.StylePriority.UseForeColor = false; + this.xrLabel337.StylePriority.UseTextAlignment = false; + this.xrLabel337.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel336 + // + this.xrLabel336.BorderColor = System.Drawing.Color.Black; + this.xrLabel336.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel336.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel336.ForeColor = System.Drawing.Color.Black; + this.xrLabel336.LocationFloat = new DevExpress.Utils.PointFloat(403.6008F, 175.1761F); + this.xrLabel336.Name = "xrLabel336"; + this.xrLabel336.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel336.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel336.StylePriority.UseBorderColor = false; + this.xrLabel336.StylePriority.UseBorders = false; + this.xrLabel336.StylePriority.UseFont = false; + this.xrLabel336.StylePriority.UseForeColor = false; + this.xrLabel336.StylePriority.UseTextAlignment = false; + this.xrLabel336.Text = "Zum Ende der ZV-Erprobung"; + this.xrLabel336.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox229 + // + this.xrCheckBox229.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox229.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox229.LocationFloat = new DevExpress.Utils.PointFloat(355.6077F, 175.1761F); + this.xrCheckBox229.Name = "xrCheckBox229"; + this.xrCheckBox229.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox229.StylePriority.UseBorders = false; + this.xrCheckBox229.StylePriority.UseFont = false; + this.xrCheckBox229.StylePriority.UseTextAlignment = false; + this.xrCheckBox229.Text = " "; + this.xrCheckBox229.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox231 + // + this.xrCheckBox231.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox231.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox231.LocationFloat = new DevExpress.Utils.PointFloat(355.6077F, 219.1762F); + this.xrCheckBox231.Name = "xrCheckBox231"; + this.xrCheckBox231.SizeF = new System.Drawing.SizeF(23.81769F, 22F); + this.xrCheckBox231.StylePriority.UseBorders = false; + this.xrCheckBox231.StylePriority.UseFont = false; + this.xrCheckBox231.StylePriority.UseTextAlignment = false; + this.xrCheckBox231.Text = " "; + this.xrCheckBox231.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel335 + // + this.xrLabel335.BorderColor = System.Drawing.Color.Black; + this.xrLabel335.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel335.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel335.ForeColor = System.Drawing.Color.Black; + this.xrLabel335.LocationFloat = new DevExpress.Utils.PointFloat(403.6008F, 219.1762F); + this.xrLabel335.Name = "xrLabel335"; + this.xrLabel335.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel335.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel335.StylePriority.UseBorderColor = false; + this.xrLabel335.StylePriority.UseBorders = false; + this.xrLabel335.StylePriority.UseFont = false; + this.xrLabel335.StylePriority.UseForeColor = false; + this.xrLabel335.StylePriority.UseTextAlignment = false; + this.xrLabel335.Text = "Zum Ende der ZV-Befristung"; + this.xrLabel335.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel333 + // + this.xrLabel333.BorderColor = System.Drawing.Color.Black; + this.xrLabel333.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel333.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel333.ForeColor = System.Drawing.Color.Red; + this.xrLabel333.LocationFloat = new DevExpress.Utils.PointFloat(379.4254F, 197.1766F); + this.xrLabel333.Name = "xrLabel333"; + this.xrLabel333.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel333.SizeF = new System.Drawing.SizeF(24.14764F, 21.8744F); + this.xrLabel333.StylePriority.UseBorderColor = false; + this.xrLabel333.StylePriority.UseBorders = false; + this.xrLabel333.StylePriority.UseFont = false; + this.xrLabel333.StylePriority.UseForeColor = false; + this.xrLabel333.StylePriority.UseTextAlignment = false; + this.xrLabel333.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox230 + // + this.xrCheckBox230.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox230.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox230.LocationFloat = new DevExpress.Utils.PointFloat(355.6077F, 197.1767F); + this.xrCheckBox230.Name = "xrCheckBox230"; + this.xrCheckBox230.SizeF = new System.Drawing.SizeF(23.81772F, 21.87439F); + this.xrCheckBox230.StylePriority.UseBorders = false; + this.xrCheckBox230.StylePriority.UseFont = false; + this.xrCheckBox230.StylePriority.UseTextAlignment = false; + this.xrCheckBox230.Text = " "; + this.xrCheckBox230.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel282 + // + this.xrLabel282.BorderColor = System.Drawing.Color.Black; + this.xrLabel282.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel282.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel282.ForeColor = System.Drawing.Color.Black; + this.xrLabel282.LocationFloat = new DevExpress.Utils.PointFloat(403.573F, 197.1761F); + this.xrLabel282.Name = "xrLabel282"; + this.xrLabel282.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel282.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel282.StylePriority.UseBorderColor = false; + this.xrLabel282.StylePriority.UseBorders = false; + this.xrLabel282.StylePriority.UseFont = false; + this.xrLabel282.StylePriority.UseForeColor = false; + this.xrLabel282.StylePriority.UseTextAlignment = false; + this.xrLabel282.Text = "Während der ZV-Befristung"; + this.xrLabel282.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel362 + // + this.xrLabel362.BorderColor = System.Drawing.Color.Black; + this.xrLabel362.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel362.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel362.ForeColor = System.Drawing.Color.Red; + this.xrLabel362.LocationFloat = new DevExpress.Utils.PointFloat(379.5731F, 351.0515F); + this.xrLabel362.Name = "xrLabel362"; + this.xrLabel362.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel362.SizeF = new System.Drawing.SizeF(24.14487F, 22F); + this.xrLabel362.StylePriority.UseBorderColor = false; + this.xrLabel362.StylePriority.UseBorders = false; + this.xrLabel362.StylePriority.UseFont = false; + this.xrLabel362.StylePriority.UseForeColor = false; + this.xrLabel362.StylePriority.UseTextAlignment = false; + this.xrLabel362.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel361 + // + this.xrLabel361.BorderColor = System.Drawing.Color.Black; + this.xrLabel361.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel361.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel361.ForeColor = System.Drawing.Color.Black; + this.xrLabel361.LocationFloat = new DevExpress.Utils.PointFloat(403.7178F, 351.0515F); + this.xrLabel361.Name = "xrLabel361"; + this.xrLabel361.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel361.SizeF = new System.Drawing.SizeF(270.5952F, 22F); + this.xrLabel361.StylePriority.UseBorderColor = false; + this.xrLabel361.StylePriority.UseBorders = false; + this.xrLabel361.StylePriority.UseFont = false; + this.xrLabel361.StylePriority.UseForeColor = false; + this.xrLabel361.StylePriority.UseTextAlignment = false; + this.xrLabel361.Text = "Krankheitsbedingt (z.B. Klinikaufenthalt)"; + this.xrLabel361.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox236 + // + this.xrCheckBox236.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox236.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox236.LocationFloat = new DevExpress.Utils.PointFloat(355.58F, 351.0518F); + this.xrCheckBox236.Name = "xrCheckBox236"; + this.xrCheckBox236.SizeF = new System.Drawing.SizeF(23.99F, 22F); + this.xrCheckBox236.StylePriority.UseBorders = false; + this.xrCheckBox236.StylePriority.UseFont = false; + this.xrCheckBox236.StylePriority.UseTextAlignment = false; + this.xrCheckBox236.Text = " "; + this.xrCheckBox236.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrCheckBox238 + // + this.xrCheckBox238.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox238.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox238.LocationFloat = new DevExpress.Utils.PointFloat(355.5798F, 395.0518F); + this.xrCheckBox238.Name = "xrCheckBox238"; + this.xrCheckBox238.SizeF = new System.Drawing.SizeF(23.84558F, 21.99948F); + this.xrCheckBox238.StylePriority.UseBorders = false; + this.xrCheckBox238.StylePriority.UseFont = false; + this.xrCheckBox238.StylePriority.UseTextAlignment = false; + this.xrCheckBox238.Text = " "; + this.xrCheckBox238.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel360 + // + this.xrLabel360.BorderColor = System.Drawing.Color.Black; + this.xrLabel360.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel360.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel360.ForeColor = System.Drawing.Color.Black; + this.xrLabel360.LocationFloat = new DevExpress.Utils.PointFloat(403.573F, 395.0513F); + this.xrLabel360.Name = "xrLabel360"; + this.xrLabel360.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel360.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel360.StylePriority.UseBorderColor = false; + this.xrLabel360.StylePriority.UseBorders = false; + this.xrLabel360.StylePriority.UseFont = false; + this.xrLabel360.StylePriority.UseForeColor = false; + this.xrLabel360.StylePriority.UseTextAlignment = false; + this.xrLabel360.Text = "Sonstiges:"; + this.xrLabel360.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel332 + // + this.xrLabel332.BorderColor = System.Drawing.Color.Black; + this.xrLabel332.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel332.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel332.ForeColor = System.Drawing.Color.Red; + this.xrLabel332.LocationFloat = new DevExpress.Utils.PointFloat(379.5731F, 395.0518F); + this.xrLabel332.Name = "xrLabel332"; + this.xrLabel332.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel332.SizeF = new System.Drawing.SizeF(23.99997F, 21.99948F); + this.xrLabel332.StylePriority.UseBorderColor = false; + this.xrLabel332.StylePriority.UseBorders = false; + this.xrLabel332.StylePriority.UseFont = false; + this.xrLabel332.StylePriority.UseForeColor = false; + this.xrLabel332.StylePriority.UseTextAlignment = false; + this.xrLabel332.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel284 + // + this.xrLabel284.BorderColor = System.Drawing.Color.Black; + this.xrLabel284.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrLabel284.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel284.ForeColor = System.Drawing.Color.Red; + this.xrLabel284.LocationFloat = new DevExpress.Utils.PointFloat(379.5731F, 373.0518F); + this.xrLabel284.Name = "xrLabel284"; + this.xrLabel284.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel284.SizeF = new System.Drawing.SizeF(23.97227F, 22F); + this.xrLabel284.StylePriority.UseBorderColor = false; + this.xrLabel284.StylePriority.UseBorders = false; + this.xrLabel284.StylePriority.UseFont = false; + this.xrLabel284.StylePriority.UseForeColor = false; + this.xrLabel284.StylePriority.UseTextAlignment = false; + this.xrLabel284.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox237 + // + this.xrCheckBox237.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox237.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox237.LocationFloat = new DevExpress.Utils.PointFloat(355.5798F, 373.0519F); + this.xrCheckBox237.Name = "xrCheckBox237"; + this.xrCheckBox237.SizeF = new System.Drawing.SizeF(23.84558F, 21.99997F); + this.xrCheckBox237.StylePriority.UseBorders = false; + this.xrCheckBox237.StylePriority.UseFont = false; + this.xrCheckBox237.StylePriority.UseTextAlignment = false; + this.xrCheckBox237.Text = " "; + this.xrCheckBox237.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel283 + // + this.xrLabel283.BorderColor = System.Drawing.Color.Black; + this.xrLabel283.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrLabel283.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel283.ForeColor = System.Drawing.Color.Black; + this.xrLabel283.LocationFloat = new DevExpress.Utils.PointFloat(403.5454F, 373.0513F); + this.xrLabel283.Name = "xrLabel283"; + this.xrLabel283.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel283.SizeF = new System.Drawing.SizeF(270.74F, 22F); + this.xrLabel283.StylePriority.UseBorderColor = false; + this.xrLabel283.StylePriority.UseBorders = false; + this.xrLabel283.StylePriority.UseFont = false; + this.xrLabel283.StylePriority.UseForeColor = false; + this.xrLabel283.StylePriority.UseTextAlignment = false; + this.xrLabel283.Text = "Umzug nach: "; + this.xrLabel283.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrLabel269 + // + this.xrLabel269.BorderColor = System.Drawing.Color.Black; + this.xrLabel269.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel269.CanGrow = false; + this.xrLabel269.Font = new System.Drawing.Font("Calibri", 9F); + this.xrLabel269.ForeColor = System.Drawing.Color.Black; + this.xrLabel269.LocationFloat = new DevExpress.Utils.PointFloat(50.81784F, 898.4277F); + this.xrLabel269.Name = "xrLabel269"; + this.xrLabel269.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel269.SizeF = new System.Drawing.SizeF(270.74F, 18F); + this.xrLabel269.StylePriority.UseBorderColor = false; + this.xrLabel269.StylePriority.UseBorders = false; + this.xrLabel269.StylePriority.UseFont = false; + this.xrLabel269.StylePriority.UseForeColor = false; + this.xrLabel269.StylePriority.UseTextAlignment = false; + this.xrLabel269.Text = "Unentschuldigt: "; + this.xrLabel269.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox227 + // + this.xrCheckBox227.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrCheckBox227.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox227.LocationFloat = new DevExpress.Utils.PointFloat(27.37662F, 898.4276F); + this.xrCheckBox227.Name = "xrCheckBox227"; + this.xrCheckBox227.SizeF = new System.Drawing.SizeF(23.44138F, 18F); + this.xrCheckBox227.StylePriority.UseBorders = false; + this.xrCheckBox227.StylePriority.UseFont = false; + this.xrCheckBox227.StylePriority.UseTextAlignment = false; + this.xrCheckBox227.Text = " "; + this.xrCheckBox227.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel280 + // + this.xrLabel280.BorderColor = System.Drawing.Color.Black; + this.xrLabel280.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel280.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel280.ForeColor = System.Drawing.Color.Red; + this.xrLabel280.LocationFloat = new DevExpress.Utils.PointFloat(3.152688F, 898.4276F); + this.xrLabel280.Name = "xrLabel280"; + this.xrLabel280.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel280.SizeF = new System.Drawing.SizeF(23.66231F, 18F); + this.xrLabel280.StylePriority.UseBorderColor = false; + this.xrLabel280.StylePriority.UseBorders = false; + this.xrLabel280.StylePriority.UseFont = false; + this.xrLabel280.StylePriority.UseForeColor = false; + this.xrLabel280.StylePriority.UseTextAlignment = false; + this.xrLabel280.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft; + // + // xrCheckBox245 + // + this.xrCheckBox245.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrCheckBox245.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center; + this.xrCheckBox245.LocationFloat = new DevExpress.Utils.PointFloat(380.402F, 578.9267F); + this.xrCheckBox245.Name = "xrCheckBox245"; + this.xrCheckBox245.SizeF = new System.Drawing.SizeF(22.44293F, 18F); + this.xrCheckBox245.StylePriority.UseBorders = false; + this.xrCheckBox245.StylePriority.UseFont = false; + this.xrCheckBox245.StylePriority.UseTextAlignment = false; + this.xrCheckBox245.Text = " "; + this.xrCheckBox245.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel347 + // + this.xrLabel347.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); + this.xrLabel347.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrLabel347.Name = "xrLabel347"; + this.xrLabel347.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel347.SizeF = new System.Drawing.SizeF(677F, 25F); + this.xrLabel347.StylePriority.UseFont = false; + this.xrLabel347.StylePriority.UseTextAlignment = false; + this.xrLabel347.Text = "Statistik [Name]"; + this.xrLabel347.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // xrLabel201 + // + this.xrLabel201.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); + this.xrLabel201.LocationFloat = new DevExpress.Utils.PointFloat(0F, 50.50219F); + this.xrLabel201.Name = "xrLabel201"; + this.xrLabel201.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel201.SizeF = new System.Drawing.SizeF(677F, 25F); + this.xrLabel201.StylePriority.UseFont = false; + this.xrLabel201.StylePriority.UseTextAlignment = false; + this.xrLabel201.Text = "Zuverdienstplatzbezogene Daten"; + this.xrLabel201.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + // + // DetailReport1 + // + this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail2, + this.GroupHeader2}); + this.DetailReport1.DataMember = "ICD10Diagnosen"; + this.DetailReport1.DataSource = this.bindingSource1; + this.DetailReport1.Level = 0; + this.DetailReport1.Name = "DetailReport1"; + // + // Detail2 + // + this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable2}); + this.Detail2.HeightF = 18F; + this.Detail2.Name = "Detail2"; + // + // xrTable2 + // + this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(10.00004F, 0F); + this.xrTable2.Name = "xrTable2"; + this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow2}); + this.xrTable2.SizeF = new System.Drawing.SizeF(653.2932F, 18F); + this.xrTable2.StylePriority.UseFont = false; + // + // xrTableRow2 + // + this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell2}); + this.xrTableRow2.Name = "xrTableRow2"; + this.xrTableRow2.Weight = 1.125D; + // + // xrTableCell2 + // + this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ICD10Diagnosen.Beschreibung")}); + this.xrTableCell2.Name = "xrTableCell2"; + this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); + this.xrTableCell2.StylePriority.UseBorders = false; + this.xrTableCell2.StylePriority.UseFont = false; + this.xrTableCell2.StylePriority.UsePadding = false; + this.xrTableCell2.Text = "Betreuer"; + this.xrTableCell2.Weight = 0.17912772585669781D; + // + // GroupHeader2 + // + this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable1}); + this.GroupHeader2.HeightF = 18F; + this.GroupHeader2.Name = "GroupHeader2"; + // + // xrTable1 + // + this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(10.00004F, 0F); + this.xrTable1.Name = "xrTable1"; + this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow1}); + this.xrTable1.SizeF = new System.Drawing.SizeF(653.2932F, 18F); + // + // xrTableRow1 + // + this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell1}); + this.xrTableRow1.Name = "xrTableRow1"; + this.xrTableRow1.Weight = 1.0588235294117647D; + // + // xrTableCell1 + // + this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.xrTableCell1.Name = "xrTableCell1"; + this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F); + this.xrTableCell1.StylePriority.UseBorders = false; + this.xrTableCell1.StylePriority.UseFont = false; + this.xrTableCell1.StylePriority.UsePadding = false; + this.xrTableCell1.Text = "Diagnosen psychatrisch und somatisch"; + this.xrTableCell1.Weight = 0.17912772585669781D; + // + // SubBand3 + // + this.SubBand3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrRichText1}); + this.SubBand3.HeightF = 1068.125F; + this.SubBand3.Name = "SubBand3"; + this.SubBand3.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand; + // + // SubBand4 + // + this.SubBand4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrRichText2}); + this.SubBand4.HeightF = 912.5F; + this.SubBand4.Name = "SubBand4"; + this.SubBand4.PageBreak = DevExpress.XtraReports.UI.PageBreak.BeforeBand; + // + // xrRichText1 + // + this.xrRichText1.Font = new System.Drawing.Font("Arial", 10F); + this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrRichText1.Name = "xrRichText1"; + this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString"); + this.xrRichText1.SizeF = new System.Drawing.SizeF(686.9999F, 1068.125F); + // + // xrRichText2 + // + this.xrRichText2.Font = new System.Drawing.Font("Arial", 10F); + this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrRichText2.Name = "xrRichText2"; + this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString"); + this.xrRichText2.SizeF = new System.Drawing.SizeF(686.1247F, 902.5F); + // + // KlientenstammblattZV + // + this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail, + this.PageFooter, + this.topMarginBand1, + this.bottomMarginBand1, + this.ReportHeader, + this.DetailReport, + this.ReportFooter, + this.DetailReport1}); + this.DataSource = this.bindingSource1; + this.Font = new System.Drawing.Font("Arial", 10F); + this.Margins = new System.Drawing.Printing.Margins(66, 74, 48, 41); + this.PageHeight = 1169; + this.PageWidth = 827; + this.PaperKind = System.Drawing.Printing.PaperKind.A4; + this.Version = "17.1"; + ((System.ComponentModel.ISupportInitialize)(this.xrTable9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.tableArbeitszeiten)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + + } + + #endregion + + private DevExpress.XtraReports.UI.DetailBand Detail; + private DevExpress.XtraReports.UI.PageFooterBand PageFooter; + private System.Windows.Forms.BindingSource bindingSource1; + private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1; + private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1; + private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader; + private DevExpress.XtraReports.UI.XRLabel xrLabel390; + private DevExpress.XtraReports.UI.XRLabel lblErwerbsmindBef; + private DevExpress.XtraReports.UI.XRCheckBox chkBoxTeil; + private DevExpress.XtraReports.UI.XRCheckBox chkBoxVoll; + private DevExpress.XtraReports.UI.XRLabel xrLabel389; + private DevExpress.XtraReports.UI.XRLabel xrLabel364; + private DevExpress.XtraReports.UI.XRLabel xrLabel365; + private DevExpress.XtraReports.UI.XRLabel xrLabel366; + private DevExpress.XtraReports.UI.XRLabel xrLabel367; + private DevExpress.XtraReports.UI.XRLabel xrLabel369; + private DevExpress.XtraReports.UI.XRLabel xrLabel370; + private DevExpress.XtraReports.UI.XRLabel xrLabel371; + private DevExpress.XtraReports.UI.XRLabel xrLabel372; + private DevExpress.XtraReports.UI.XRLabel xrLabel373; + private DevExpress.XtraReports.UI.XRLabel xrLabel375; + private DevExpress.XtraReports.UI.XRLabel xrLabel376; + private DevExpress.XtraReports.UI.XRLabel lblLebensunterhalt; + private DevExpress.XtraReports.UI.XRLabel lblErwerbsmindB; + private DevExpress.XtraReports.UI.XRLabel xrLabel382; + private DevExpress.XtraReports.UI.XRLabel xrLabel384; + private DevExpress.XtraReports.UI.XRLabel xrLabel385; + private DevExpress.XtraReports.UI.XRLabel xrLabel388; + private DevExpress.XtraReports.UI.DetailReportBand DetailReport; + private DevExpress.XtraReports.UI.DetailBand Detail1; + private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter; + private DevExpress.XtraReports.UI.XRLabel xrLabel200; + private DevExpress.XtraReports.UI.XRLabel xrLabel195; + private DevExpress.XtraReports.UI.XRLabel xrLabel196; + private DevExpress.XtraReports.UI.XRLabel xrLabel197; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox63; + private DevExpress.XtraReports.UI.XRLabel xrLabel198; + private DevExpress.XtraReports.UI.XRLabel xrLabel199; + private DevExpress.XtraReports.UI.XRLabel xrLabel189; + private DevExpress.XtraReports.UI.XRLabel xrLabel190; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox62; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox61; + private DevExpress.XtraReports.UI.XRLabel xrLabel191; + private DevExpress.XtraReports.UI.XRLabel xrLabel192; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox60; + private DevExpress.XtraReports.UI.XRLabel xrLabel193; + private DevExpress.XtraReports.UI.XRLabel xrLabel194; + private DevExpress.XtraReports.UI.XRLabel xrLabel177; + private DevExpress.XtraReports.UI.XRLabel xrLabel178; + private DevExpress.XtraReports.UI.XRLabel xrLabel179; + private DevExpress.XtraReports.UI.XRLabel xrLabel180; + private DevExpress.XtraReports.UI.XRLabel xrLabel181; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox57; + private DevExpress.XtraReports.UI.XRLabel xrLabel182; + private DevExpress.XtraReports.UI.XRLabel xrLabel183; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox58; + private DevExpress.XtraReports.UI.XRLabel xrLabel184; + private DevExpress.XtraReports.UI.XRLabel xrLabel185; + private DevExpress.XtraReports.UI.XRLabel xrLabel186; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox59; + private DevExpress.XtraReports.UI.XRLabel xrLabel187; + private DevExpress.XtraReports.UI.XRLabel xrLabel188; + private DevExpress.XtraReports.UI.XRLabel xrLabel133; + private DevExpress.XtraReports.UI.XRLabel xrLabel134; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox56; + private DevExpress.XtraReports.UI.XRLabel xrLabel167; + private DevExpress.XtraReports.UI.XRLabel xrLabel168; + private DevExpress.XtraReports.UI.XRLabel xrLabel169; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox55; + private DevExpress.XtraReports.UI.XRLabel xrLabel170; + private DevExpress.XtraReports.UI.XRLabel xrLabel171; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox54; + private DevExpress.XtraReports.UI.XRLabel xrLabel172; + private DevExpress.XtraReports.UI.XRLabel xrLabel173; + private DevExpress.XtraReports.UI.XRLabel xrLabel174; + private DevExpress.XtraReports.UI.XRLabel xrLabel175; + private DevExpress.XtraReports.UI.XRLabel xrLabel176; + private DevExpress.XtraReports.UI.XRLabel xrLabel132; + private DevExpress.XtraReports.UI.XRLabel xrLabel165; + private DevExpress.XtraReports.UI.XRLabel xrLabel166; + private DevExpress.XtraReports.UI.XRLabel xrLabel162; + private DevExpress.XtraReports.UI.XRLabel xrLabel163; + private DevExpress.XtraReports.UI.XRLabel xrLabel164; + private DevExpress.XtraReports.UI.XRLabel xrLabel63; + private DevExpress.XtraReports.UI.XRLabel xrLabel154; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox51; + private DevExpress.XtraReports.UI.XRLabel xrLabel155; + private DevExpress.XtraReports.UI.XRLabel xrLabel156; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox52; + private DevExpress.XtraReports.UI.XRLabel xrLabel157; + private DevExpress.XtraReports.UI.XRLabel xrLabel158; + private DevExpress.XtraReports.UI.XRLabel xrLabel159; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox53; + private DevExpress.XtraReports.UI.XRLabel xrLabel160; + private DevExpress.XtraReports.UI.XRLabel xrLabel161; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox50; + private DevExpress.XtraReports.UI.XRLabel xrLabel137; + private DevExpress.XtraReports.UI.XRLabel xrLabel153; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox49; + private DevExpress.XtraReports.UI.XRLabel xrLabel135; + private DevExpress.XtraReports.UI.XRLabel xrLabel136; + private DevExpress.XtraReports.UI.XRLabel xrLabel149; + private DevExpress.XtraReports.UI.XRLabel xrLabel150; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox47; + private DevExpress.XtraReports.UI.XRLabel xrLabel151; + private DevExpress.XtraReports.UI.XRLabel xrLabel152; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox48; + private DevExpress.XtraReports.UI.XRLabel xrLabel145; + private DevExpress.XtraReports.UI.XRLabel xrLabel146; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox45; + private DevExpress.XtraReports.UI.XRLabel xrLabel147; + private DevExpress.XtraReports.UI.XRLabel xrLabel148; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox46; + private DevExpress.XtraReports.UI.XRLabel xrLabel142; + private DevExpress.XtraReports.UI.XRLabel xrLabel143; + private DevExpress.XtraReports.UI.XRLabel xrLabel144; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox44; + private DevExpress.XtraReports.UI.XRLabel xrLabel138; + private DevExpress.XtraReports.UI.XRLabel xrLabel139; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox43; + private DevExpress.XtraReports.UI.XRLabel xrLabel140; + private DevExpress.XtraReports.UI.XRLabel xrLabel141; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox42; + private DevExpress.XtraReports.UI.XRLabel xrLabel130; + private DevExpress.XtraReports.UI.XRLabel xrLabel131; + private DevExpress.XtraReports.UI.XRLabel xrLabel126; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox41; + private DevExpress.XtraReports.UI.XRLabel xrLabel127; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox40; + private DevExpress.XtraReports.UI.XRLabel xrLabel128; + private DevExpress.XtraReports.UI.XRLabel xrLabel129; + private DevExpress.XtraReports.UI.XRLabel xrLabel116; + private DevExpress.XtraReports.UI.XRLabel xrLabel117; + private DevExpress.XtraReports.UI.XRLabel xrLabel118; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox35; + private DevExpress.XtraReports.UI.XRLabel xrLabel119; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox36; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox37; + private DevExpress.XtraReports.UI.XRLabel xrLabel120; + private DevExpress.XtraReports.UI.XRLabel xrLabel121; + private DevExpress.XtraReports.UI.XRLabel xrLabel122; + private DevExpress.XtraReports.UI.XRLabel xrLabel123; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox39; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox38; + private DevExpress.XtraReports.UI.XRLabel xrLabel124; + private DevExpress.XtraReports.UI.XRLabel xrLabel125; + private DevExpress.XtraReports.UI.XRLabel xrLabel7; + private DevExpress.XtraReports.UI.XRLabel xrLabel14; + private DevExpress.XtraReports.UI.XRLabel xrLabel21; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox30; + private DevExpress.XtraReports.UI.XRLabel xrLabel25; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox31; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox32; + private DevExpress.XtraReports.UI.XRLabel xrLabel28; + private DevExpress.XtraReports.UI.XRLabel xrLabel32; + private DevExpress.XtraReports.UI.XRLabel xrLabel42; + private DevExpress.XtraReports.UI.XRLabel xrLabel43; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox34; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox33; + private DevExpress.XtraReports.UI.XRLabel xrLabel114; + private DevExpress.XtraReports.UI.XRLabel xrLabel115; + private DevExpress.XtraReports.UI.XRLabel xrLabel110; + private DevExpress.XtraReports.UI.XRLabel xrLabel111; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox28; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox29; + private DevExpress.XtraReports.UI.XRLabel xrLabel112; + private DevExpress.XtraReports.UI.XRLabel xrLabel113; + private DevExpress.XtraReports.UI.XRLabel xrLabel108; + private DevExpress.XtraReports.UI.XRLabel xrLabel107; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox27; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox26; + private DevExpress.XtraReports.UI.XRLabel xrLabel101; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox25; + private DevExpress.XtraReports.UI.XRLabel xrLabel102; + private DevExpress.XtraReports.UI.XRLabel xrLabel103; + private DevExpress.XtraReports.UI.XRLabel xrLabel104; + private DevExpress.XtraReports.UI.XRLabel xrLabel105; + private DevExpress.XtraReports.UI.XRLabel xrLabel106; + private DevExpress.XtraReports.UI.XRLabel xrLabel109; + private DevExpress.XtraReports.UI.XRLabel xrLabel92; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox23; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox22; + private DevExpress.XtraReports.UI.XRLabel xrLabel93; + private DevExpress.XtraReports.UI.XRLabel xrLabel94; + private DevExpress.XtraReports.UI.XRLabel xrLabel95; + private DevExpress.XtraReports.UI.XRLabel xrLabel96; + private DevExpress.XtraReports.UI.XRLabel xrLabel97; + private DevExpress.XtraReports.UI.XRLabel xrLabel98; + private DevExpress.XtraReports.UI.XRLabel xrLabel99; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox24; + private DevExpress.XtraReports.UI.XRLabel xrLabel100; + private DevExpress.XtraReports.UI.XRLabel xrLabel90; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox21; + private DevExpress.XtraReports.UI.XRLabel xrLabel91; + private DevExpress.XtraReports.UI.XRLabel xrLabel89; + private DevExpress.XtraReports.UI.XRLabel xrLabel77; + private DevExpress.XtraReports.UI.XRLabel xrLabel78; + private DevExpress.XtraReports.UI.XRLabel xrLabel79; + private DevExpress.XtraReports.UI.XRLabel xrLabel80; + private DevExpress.XtraReports.UI.XRLabel xrLabel81; + private DevExpress.XtraReports.UI.XRLabel xrLabel82; + private DevExpress.XtraReports.UI.XRLabel xrLabel83; + private DevExpress.XtraReports.UI.XRLabel xrLabel84; + private DevExpress.XtraReports.UI.XRLabel xrLabel85; + private DevExpress.XtraReports.UI.XRLabel xrLabel86; + private DevExpress.XtraReports.UI.XRLabel xrLabel87; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox19; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox20; + private DevExpress.XtraReports.UI.XRLabel xrLabel88; + private DevExpress.XtraReports.UI.XRLabel xrLabel75; + private DevExpress.XtraReports.UI.XRLabel xrLabel76; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox18; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox17; + private DevExpress.XtraReports.UI.XRLabel xrLabel71; + private DevExpress.XtraReports.UI.XRLabel xrLabel72; + private DevExpress.XtraReports.UI.XRLabel xrLabel73; + private DevExpress.XtraReports.UI.XRLabel xrLabel74; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox16; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox14; + private DevExpress.XtraReports.UI.XRLabel xrLabel67; + private DevExpress.XtraReports.UI.XRLabel xrLabel68; + private DevExpress.XtraReports.UI.XRLabel xrLabel69; + private DevExpress.XtraReports.UI.XRLabel xrLabel70; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox15; + private DevExpress.XtraReports.UI.XRLabel xrLabel60; + private DevExpress.XtraReports.UI.XRLabel xrLabel61; + private DevExpress.XtraReports.UI.XRLabel xrLabel62; + private DevExpress.XtraReports.UI.XRCheckBox chkBoxEinpersonenhh; + private DevExpress.XtraReports.UI.XRLabel xrLabel64; + private DevExpress.XtraReports.UI.XRLabel xrLabel65; + private DevExpress.XtraReports.UI.XRLabel xrLabel66; + private DevExpress.XtraReports.UI.XRCheckBox chkBoxMehrpersonenhh; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox11; + private DevExpress.XtraReports.UI.XRLabel xrLabel58; + private DevExpress.XtraReports.UI.XRLabel xrLabel59; + private DevExpress.XtraReports.UI.XRLabel xrLabel50; + private DevExpress.XtraReports.UI.XRLabel xrLabel51; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox10; + private DevExpress.XtraReports.UI.XRLabel xrLabel52; + private DevExpress.XtraReports.UI.XRLabel xrLabel53; + private DevExpress.XtraReports.UI.XRLabel xrLabel54; + private DevExpress.XtraReports.UI.XRLabel xrLabel55; + private DevExpress.XtraReports.UI.XRLabel xrLabel56; + private DevExpress.XtraReports.UI.XRLabel xrLabel57; + private DevExpress.XtraReports.UI.XRLabel xrLabel2; + private DevExpress.XtraReports.UI.XRLabel xrLabel3; + private DevExpress.XtraReports.UI.XRLabel xrLabel4; + private DevExpress.XtraReports.UI.XRLabel xrLabel46; + private DevExpress.XtraReports.UI.XRLabel xrLabel47; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox8; + private DevExpress.XtraReports.UI.XRLabel xrLabel48; + private DevExpress.XtraReports.UI.XRLabel xrLabel49; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox9; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox7; + private DevExpress.XtraReports.UI.XRLabel xrLabel26; + private DevExpress.XtraReports.UI.XRLabel xrLabel27; + private DevExpress.XtraReports.UI.XRLabel xrLabel29; + private DevExpress.XtraReports.UI.XRLabel xrLabel30; + private DevExpress.XtraReports.UI.XRLabel xrLabel31; + private DevExpress.XtraReports.UI.XRLabel xrLabel15; + private DevExpress.XtraReports.UI.XRLabel xrLabel16; + private DevExpress.XtraReports.UI.XRLabel xrLabel17; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox4; + private DevExpress.XtraReports.UI.XRLabel xrLabel18; + private DevExpress.XtraReports.UI.XRLabel xrLabel19; + private DevExpress.XtraReports.UI.XRLabel xrLabel20; + private DevExpress.XtraReports.UI.XRLabel xrLabel22; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox5; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox6; + private DevExpress.XtraReports.UI.XRLabel xrLabel23; + private DevExpress.XtraReports.UI.XRLabel xrLabel24; + private DevExpress.XtraReports.UI.XRLabel xrLabel13; + private DevExpress.XtraReports.UI.XRLabel xrLabel11; + private DevExpress.XtraReports.UI.XRLabel xrLabel12; + private DevExpress.XtraReports.UI.XRLabel xrLabel8; + private DevExpress.XtraReports.UI.XRLabel xrLabel9; + private DevExpress.XtraReports.UI.XRLabel xrLabel10; + private DevExpress.XtraReports.UI.XRLabel xrLabel5; + private DevExpress.XtraReports.UI.XRLabel xrLabel6; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox3; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox2; + private DevExpress.XtraReports.UI.XRLabel xrLabel44; + private DevExpress.XtraReports.UI.XRLabel xrLabel45; + private DevExpress.XtraReports.UI.XRLabel xrLabel40; + private DevExpress.XtraReports.UI.XRLabel xrLabel41; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox1; + private DevExpress.XtraReports.UI.XRLabel xrLabel37; + private DevExpress.XtraReports.UI.XRLabel xrLabel38; + private DevExpress.XtraReports.UI.XRLabel xrLabel39; + private DevExpress.XtraReports.UI.XRLabel xrLabel35; + private DevExpress.XtraReports.UI.XRLabel xrLabel33; + private DevExpress.XtraReports.UI.XRLabel xrLabel34; + private DevExpress.XtraReports.UI.XRLabel xrLabel561; + private DevExpress.XtraReports.UI.XRLabel xrLabel36; + private DevExpress.XtraReports.UI.SubBand SubBand2; + private DevExpress.XtraReports.UI.XRLabel xrLabel399; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox256; + private DevExpress.XtraReports.UI.XRLabel xrLabel329; + private DevExpress.XtraReports.UI.XRLabel xrLabel328; + private DevExpress.XtraReports.UI.XRLabel xrLabel327; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox255; + private DevExpress.XtraReports.UI.XRLabel xrLabel326; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox254; + private DevExpress.XtraReports.UI.XRLabel xrLabel325; + private DevExpress.XtraReports.UI.XRLabel xrLabel324; + private DevExpress.XtraReports.UI.XRLabel xrLabel323; + private DevExpress.XtraReports.UI.XRLabel xrLabel322; + private DevExpress.XtraReports.UI.XRLabel xrLabel321; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox249; + private DevExpress.XtraReports.UI.XRLabel xrLabel320; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox250; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox251; + private DevExpress.XtraReports.UI.XRLabel xrLabel319; + private DevExpress.XtraReports.UI.XRLabel xrLabel318; + private DevExpress.XtraReports.UI.XRLabel xrLabel317; + private DevExpress.XtraReports.UI.XRLabel xrLabel316; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox253; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox252; + private DevExpress.XtraReports.UI.XRLabel xrLabel315; + private DevExpress.XtraReports.UI.XRLabel xrLabel314; + private DevExpress.XtraReports.UI.XRLabel xrLabel313; + private DevExpress.XtraReports.UI.XRLabel xrLabel312; + private DevExpress.XtraReports.UI.XRLabel xrLabel311; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox244; + private DevExpress.XtraReports.UI.XRLabel xrLabel310; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox246; + private DevExpress.XtraReports.UI.XRLabel xrLabel309; + private DevExpress.XtraReports.UI.XRLabel xrLabel308; + private DevExpress.XtraReports.UI.XRLabel xrLabel307; + private DevExpress.XtraReports.UI.XRLabel xrLabel306; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox248; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox247; + private DevExpress.XtraReports.UI.XRLabel xrLabel305; + private DevExpress.XtraReports.UI.XRLabel xrLabel304; + private DevExpress.XtraReports.UI.XRLabel xrLabel299; + private DevExpress.XtraReports.UI.XRLabel xrLabel298; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox218; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox217; + private DevExpress.XtraReports.UI.XRLabel xrLabel297; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox216; + private DevExpress.XtraReports.UI.XRLabel xrLabel296; + private DevExpress.XtraReports.UI.XRLabel xrLabel295; + private DevExpress.XtraReports.UI.XRLabel xrLabel291; + private DevExpress.XtraReports.UI.XRLabel xrLabel278; + private DevExpress.XtraReports.UI.XRLabel xrLabel277; + private DevExpress.XtraReports.UI.XRLabel xrLabel276; + private DevExpress.XtraReports.UI.XRLabel xrLabel275; + private DevExpress.XtraReports.UI.XRLabel xrLabel274; + private DevExpress.XtraReports.UI.XRLabel xrLabel273; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox210; + private DevExpress.XtraReports.UI.XRLabel xrLabel253; + private DevExpress.XtraReports.UI.XRLabel xrLabel252; + private DevExpress.XtraReports.UI.XRLabel xrLabel251; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox211; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox209; + private DevExpress.XtraReports.UI.XRLabel xrLabel250; + private DevExpress.XtraReports.UI.XRLabel xrLabel249; + private DevExpress.XtraReports.UI.XRLabel xrLabel248; + private DevExpress.XtraReports.UI.XRLabel xrLabel247; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox208; + private DevExpress.XtraReports.UI.XRLabel xrLabel246; + private DevExpress.XtraReports.UI.XRLabel xrLabel245; + private DevExpress.XtraReports.UI.XRLabel xrLabel244; + private DevExpress.XtraReports.UI.XRLabel xrLabel243; + private DevExpress.XtraReports.UI.XRLabel xrLabel242; + private DevExpress.XtraReports.UI.XRLabel xrLabel241; + private DevExpress.XtraReports.UI.XRLabel xrLabel240; + private DevExpress.XtraReports.UI.XRLabel xrLabel239; + private DevExpress.XtraReports.UI.XRLabel xrLabel238; + private DevExpress.XtraReports.UI.XRLabel xrLabel237; + private DevExpress.XtraReports.UI.XRLabel xrLabel236; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox205; + private DevExpress.XtraReports.UI.XRLabel xrLabel235; + private DevExpress.XtraReports.UI.XRLabel xrLabel234; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox206; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox204; + private DevExpress.XtraReports.UI.XRLabel xrLabel233; + private DevExpress.XtraReports.UI.XRLabel xrLabel232; + private DevExpress.XtraReports.UI.XRLabel xrLabel231; + private DevExpress.XtraReports.UI.XRLabel xrLabel230; + private DevExpress.XtraReports.UI.XRLabel xrLabel229; + private DevExpress.XtraReports.UI.XRLabel xrLabel223; + private DevExpress.XtraReports.UI.XRLabel xrLabel222; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox202; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox203; + private DevExpress.XtraReports.UI.XRLabel xrLabel221; + private DevExpress.XtraReports.UI.XRLabel xrLabel220; + private DevExpress.XtraReports.UI.XRLabel xrLabel216; + private DevExpress.XtraReports.UI.XRLabel xrLabel215; + private DevExpress.XtraReports.UI.XRLabel xrLabel214; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox201; + private DevExpress.XtraReports.UI.XRLabel xrLabel211; + private DevExpress.XtraReports.UI.XRLabel xrLabel210; + private DevExpress.XtraReports.UI.XRLabel xrLabel209; + private DevExpress.XtraReports.UI.XRLabel xrLabel208; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox200; + private DevExpress.XtraReports.UI.XRLabel xrLabel207; + private DevExpress.XtraReports.UI.XRLabel xrLabel206; + private DevExpress.XtraReports.UI.XRLabel xrLabel205; + private DevExpress.XtraReports.UI.XRLabel xrLabel204; + private DevExpress.XtraReports.UI.XRLabel xrLabel203; + private DevExpress.XtraReports.UI.XRLabel xrLabel202; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox207; + private DevExpress.XtraReports.UI.XRLabel xrLabel213; + private DevExpress.XtraReports.UI.XRLabel xrLabel212; + private DevExpress.XtraReports.UI.XRLabel xrLabel256; + private DevExpress.XtraReports.UI.XRLabel xrLabel255; + private DevExpress.XtraReports.UI.XRLabel xrLabel254; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox212; + private DevExpress.XtraReports.UI.XRLabel xrLabel228; + private DevExpress.XtraReports.UI.XRLabel xrLabel227; + private DevExpress.XtraReports.UI.XRLabel xrLabel226; + private DevExpress.XtraReports.UI.XRLabel xrLabel225; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox213; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox215; + private DevExpress.XtraReports.UI.XRLabel xrLabel224; + private DevExpress.XtraReports.UI.XRLabel xrLabel219; + private DevExpress.XtraReports.UI.XRLabel xrLabel218; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox214; + private DevExpress.XtraReports.UI.XRLabel xrLabel217; + private DevExpress.XtraReports.UI.XRLabel xrLabel262; + private DevExpress.XtraReports.UI.XRLabel xrLabel261; + private DevExpress.XtraReports.UI.XRLabel xrLabel260; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox219; + private DevExpress.XtraReports.UI.XRLabel xrLabel259; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox220; + private DevExpress.XtraReports.UI.XRLabel xrLabel258; + private DevExpress.XtraReports.UI.XRLabel xrLabel257; + private DevExpress.XtraReports.UI.XRLabel xrLabel279; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox226; + private DevExpress.XtraReports.UI.XRLabel xrLabel272; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox225; + private DevExpress.XtraReports.UI.XRLabel xrLabel271; + private DevExpress.XtraReports.UI.XRLabel xrLabel270; + private DevExpress.XtraReports.UI.XRLabel xrLabel268; + private DevExpress.XtraReports.UI.XRLabel xrLabel267; + private DevExpress.XtraReports.UI.XRLabel xrLabel266; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox222; + private DevExpress.XtraReports.UI.XRLabel xrLabel265; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox223; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox224; + private DevExpress.XtraReports.UI.XRLabel xrLabel264; + private DevExpress.XtraReports.UI.XRLabel xrLabel263; + private DevExpress.XtraReports.UI.XRLabel xrLabel294; + private DevExpress.XtraReports.UI.XRLabel xrLabel293; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox242; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox243; + private DevExpress.XtraReports.UI.XRLabel xrLabel292; + private DevExpress.XtraReports.UI.XRLabel xrLabel290; + private DevExpress.XtraReports.UI.XRLabel xrLabel289; + private DevExpress.XtraReports.UI.XRLabel xrLabel288; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox241; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox240; + private DevExpress.XtraReports.UI.XRLabel xrLabel287; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox239; + private DevExpress.XtraReports.UI.XRLabel xrLabel286; + private DevExpress.XtraReports.UI.XRLabel xrLabel285; + private DevExpress.XtraReports.UI.XRLabel xrLabel281; + private DevExpress.XtraReports.UI.XRLabel xrLabel331; + private DevExpress.XtraReports.UI.XRLabel xrLabel330; + private DevExpress.XtraReports.UI.XRLabel xrLabel303; + private DevExpress.XtraReports.UI.XRLabel xrLabel302; + private DevExpress.XtraReports.UI.XRLabel xrLabel301; + private DevExpress.XtraReports.UI.XRLabel xrLabel300; + private DevExpress.XtraReports.UI.XRLabel xrLabel359; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox234; + private DevExpress.XtraReports.UI.XRLabel xrLabel358; + private DevExpress.XtraReports.UI.XRLabel xrLabel357; + private DevExpress.XtraReports.UI.XRLabel xrLabel356; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox235; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox233; + private DevExpress.XtraReports.UI.XRLabel xrLabel355; + private DevExpress.XtraReports.UI.XRLabel xrLabel354; + private DevExpress.XtraReports.UI.XRLabel xrLabel353; + private DevExpress.XtraReports.UI.XRLabel xrLabel352; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox232; + private DevExpress.XtraReports.UI.XRLabel xrLabel351; + private DevExpress.XtraReports.UI.XRLabel xrLabel350; + private DevExpress.XtraReports.UI.XRLabel xrLabel349; + private DevExpress.XtraReports.UI.XRLabel xrLabel345; + private DevExpress.XtraReports.UI.XRLabel xrLabel344; + private DevExpress.XtraReports.UI.XRLabel xrLabel343; + private DevExpress.XtraReports.UI.XRLabel xrLabel342; + private DevExpress.XtraReports.UI.XRLabel xrLabel341; + private DevExpress.XtraReports.UI.XRLabel xrLabel340; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox228; + private DevExpress.XtraReports.UI.XRLabel xrLabel339; + private DevExpress.XtraReports.UI.XRLabel xrLabel338; + private DevExpress.XtraReports.UI.XRLabel xrLabel337; + private DevExpress.XtraReports.UI.XRLabel xrLabel336; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox229; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox231; + private DevExpress.XtraReports.UI.XRLabel xrLabel335; + private DevExpress.XtraReports.UI.XRLabel xrLabel333; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox230; + private DevExpress.XtraReports.UI.XRLabel xrLabel282; + private DevExpress.XtraReports.UI.XRLabel xrLabel362; + private DevExpress.XtraReports.UI.XRLabel xrLabel361; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox236; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox238; + private DevExpress.XtraReports.UI.XRLabel xrLabel360; + private DevExpress.XtraReports.UI.XRLabel xrLabel332; + private DevExpress.XtraReports.UI.XRLabel xrLabel284; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox237; + private DevExpress.XtraReports.UI.XRLabel xrLabel283; + private DevExpress.XtraReports.UI.XRLabel xrLabel269; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox227; + private DevExpress.XtraReports.UI.XRLabel xrLabel280; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox245; + private DevExpress.XtraReports.UI.XRLabel xrLabel347; + private DevExpress.XtraReports.UI.XRLabel xrLabel201; + private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1; + private DevExpress.XtraReports.UI.XRTable xrTable8; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow23; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell47; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell48; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell53; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell49; + private DevExpress.XtraReports.UI.XRTable xrTable9; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow24; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell50; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell51; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell54; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell52; + private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1; + private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter1; + private DevExpress.XtraReports.UI.DetailReportBand DetailReport1; + private DevExpress.XtraReports.UI.DetailBand Detail2; + private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2; + private DevExpress.XtraReports.UI.XRTable xrTable2; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell2; + private DevExpress.XtraReports.UI.XRTable xrTable1; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell1; + private DevExpress.XtraReports.UI.SubBand SubBand1; + private DevExpress.XtraReports.UI.XRLabel lblTätigkeiten; + private DevExpress.XtraReports.UI.XRLabel xrLabel348; + private DevExpress.XtraReports.UI.XRLabel xrLabel374; + private DevExpress.XtraReports.UI.XRLabel lblWochenAZeit; + private DevExpress.XtraReports.UI.XRLabel lblMotZuwendung; + private DevExpress.XtraReports.UI.XRLabel xrLabel381; + private DevExpress.XtraReports.UI.XRLabel lblFahrtpauschale; + private DevExpress.XtraReports.UI.XRLabel xrLabel386; + private DevExpress.XtraReports.UI.XRLabel xrLabel377; + private DevExpress.XtraReports.UI.XRLabel xrLabel380; + private DevExpress.XtraReports.UI.XRLabel xrLabel401; + private DevExpress.XtraReports.UI.XRLabel lblFirma; + private DevExpress.XtraReports.UI.XRLabel lblFirmaAnschrift; + private DevExpress.XtraReports.UI.XRTable tableArbeitszeiten; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow3; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell8; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell9; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell3; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell5; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell4; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell10; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell12; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell14; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell6; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow4; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell7; + private DevExpress.XtraReports.UI.XRTableCell lblMoBeginn; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell13; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell15; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell16; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell17; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell18; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell19; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell20; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow5; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell21; + private DevExpress.XtraReports.UI.XRTableCell lblMoPause; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell23; + private DevExpress.XtraReports.UI.XRTableCell lblMiPause; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell25; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell26; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell27; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell28; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell29; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow6; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell30; + private DevExpress.XtraReports.UI.XRTableCell lblMoEnde; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell32; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell33; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell34; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell35; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell36; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell37; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell38; + private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader1; + private DevExpress.XtraReports.UI.XRLabel lblZVAusscheiden; + private DevExpress.XtraReports.UI.XRLabel xrLabel397; + private DevExpress.XtraReports.UI.XRLabel xrLabel394; + private DevExpress.XtraReports.UI.XRLabel lblZVBefristung; + private DevExpress.XtraReports.UI.XRLabel xrLabel392; + private DevExpress.XtraReports.UI.XRLabel lblZVAufnahme; + private DevExpress.XtraReports.UI.XRLabel lblFirmaTel; + private DevExpress.XtraReports.UI.XRLabel lblArbeitszeiten; + private DevExpress.XtraReports.UI.XRLabel lblDatum; + private DevExpress.XtraReports.UI.XRLabel xrLabel346; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox221; + private DevExpress.XtraReports.UI.SubBand SubBand3; + private DevExpress.XtraReports.UI.XRRichText xrRichText1; + private DevExpress.XtraReports.UI.SubBand SubBand4; + private DevExpress.XtraReports.UI.XRRichText xrRichText2; + } +} diff --git a/ReportImp/SKFLeverkusen/Betreuungsvertrag.cs b/ReportImp/SKFLeverkusen/Betreuungsvertrag.cs new file mode 100644 index 000000000..194dde146 --- /dev/null +++ b/ReportImp/SKFLeverkusen/Betreuungsvertrag.cs @@ -0,0 +1,858 @@ +using System; +using System.Drawing; +using System.Collections; +using System.ComponentModel; +using DevExpress.XtraReports.UI; +using BeWo.Report.ReportObjects; +using BS.Shared; +using BeWo.Data.Access; +using BeWo.Data.Entities; +using BS.Shared.Core; +using BeWo.Report; +using System.Text; +using BS.Shared.DataContracts; +using System.Collections.Generic; +using System.Linq; +//using DomizielAnsbach.Service; + +namespace SKFLeverkusen +{ + public partial class Betreuungsvertrag : DevExpress.XtraReports.UI.XtraReport //, IBeWoReport + { + public Betreuungsvertrag() + { + InitializeComponent(); + } + + public void SetReportDataSource(CustomerDataRO pRO) + { + //DateTime start = new DateTime(newRO.Datum.Year, 1, 1); + //DateTime end = newRO.Datum; + + //var pRO = newRO.CustomerDataRO; + long cbOid = 0; + var c = DAOFactory.GenericDAO.LoadByID(pRO.CustomerOid); + // Stammdatenblatt: + StringBuilder sbAnschrift = new StringBuilder(); + StringBuilder sbAnschrift2 = new StringBuilder(); + if (pRO.EnvironmentOrganisations != null) + { + for (int i = pRO.EnvironmentOrganisations.Count - 1; i >= 0; i--) + { + var org = pRO.EnvironmentOrganisations[i]; + if (org.RelationRole != null && org.RelationRole.DisplayName == "Zuverdienstplatz") + { + lblFirma.Text += org.Organisation.Name; + sbAnschrift.AppendLine(org.Organisation.Street); + sbAnschrift.Append(org.Organisation.PostalCode); + sbAnschrift.Append(" "); + sbAnschrift.AppendLine(org.Organisation.Town); + + sbAnschrift2.AppendLine(org.Organisation.ContactSummaryInfo); + sbAnschrift2.AppendLine(""); + //pRO.EnvironmentOrganisations.Remove(org); falls noch Unternehmensliste aufgeführt werden müsste... + } + } + } + lblFirmaAnschrift.Text = sbAnschrift.ToString(); + lblFirmaTel.Text = sbAnschrift2.ToString(); + //lblDatum.Text += end.ToString("dd.MM.yyyy"); + + lblArbeitszeiten.Text = "Keine zum Stichtag gültigen Arbeitszeiten"; + //CreateArbeitszeitenTable(pRO.Customer.Arbeitszeiten, pRO, c, end); + + //Statistik zum Zuverdienstteilnehmer + //Geschlecht + if (pRO.Sex != null && pRO.Sex.Equals("weiblich")) + xrCheckBox1.Checked = true; + else if (pRO.Sex != null && pRO.Sex.Equals("männlich")) + xrCheckBox2.Checked = true; + else if (pRO.Sex != null && pRO.Sex.Equals("divers")) + xrCheckBox3.Checked = true; + //Familienstand + if (pRO.FamilyStatus != null) + { + if (pRO.FamilyStatus.Equals("ledig")) + xrCheckBox4.Checked = true; + else if (pRO.FamilyStatus.Equals("verheiratet") || pRO.FamilyStatus.Equals("verpartnert") || pRO.FamilyStatus.Equals("in Partnerschaft")) + xrCheckBox5.Checked = true; + else if (pRO.FamilyStatus.Equals("geschieden") || pRO.FamilyStatus.Equals("getrennt lebend") || pRO.FamilyStatus.Equals("entpartnert")) + xrCheckBox6.Checked = true; + else if (pRO.FamilyStatus.Equals("verwitwet")) + xrCheckBox7.Checked = true; + } + //Migrationshintergrund + if (pRO.Customer.IsMigrant) + xrCheckBox8.Checked = true; + else + xrCheckBox9.Checked = true; + //Wohnort + if (pRO.Customer.Town != null && pRO.Customer.Town.Contains("Ansbach")) + xrCheckBox10.Checked = true; + else + xrCheckBox11.Checked = true; + + SetVarFieldValuesTeilnehmer(pRO, c); + + //Angaben zum Zuverdienstplatz + foreach (var o2p in pRO.EnvironmentOrganisations) + { + if (o2p.RelationRole.ToString() == "Zuverdienstplatz") + { + cbOid = o2p.Organisation.CostBearerOid ?? 0; + //Unternehmenssitz + if (!String.IsNullOrEmpty(o2p.Organisation.Town)) + { + if (o2p.Organisation.Town.Contains("Ansbach")) + xrCheckBox200.Checked = true; + else + xrCheckBox201.Checked = true; + } + + //Branche + if (!String.IsNullOrEmpty(o2p.Info1)) + { + if (o2p.Info1.ToLower().Contains("dienst")) + xrCheckBox202.Checked = true; + else if (o2p.Info1.ToLower().Contains("produktion")) + xrCheckBox203.Checked = true; + else + { + xrCheckBox204.Checked = true; + xrLabel233.Text = "Sonstiges: " + o2p.Info1.ToString(); + } + } + //Anleiterin - Geschlecht + if (o2p.Person != null) + { + var anleiterin = DAOFactory.GenericDAO.LoadByID(o2p.Person.PersonOid); + if (anleiterin.Sex.Value.ToString().Contains("Female")) + xrCheckBox205.Checked = true; + else if (anleiterin.Sex.Value.ToString().Contains("Male")) + xrCheckBox206.Checked = true; + else if (anleiterin.Sex.Value.ToString().Contains("Divers")) + xrCheckBox207.Checked = true; + } + } + } + if (cbOid != 0) + SetVarFieldValuesStammdaten(pRO, cbOid, c); + //SetArbeitszeiten(pRO, cbOid, c, end); + //SetAbwesenheiten(pRO, c, end); + SetVarFieldValuesPlatz(pRO, c); + + this.bindingSource1.DataSource = pRO; + } + + private void SetVarFieldValuesStammdaten(CustomerDataRO pRO, long cbOid, Customer c) + { + foreach (var vv in c.VarFieldValueList) + { + var varFieldValue = Utils.XMLDeserializeFromString(vv.SerializedValue, Type.GetType(vv.TypeName)); + if (varFieldValue != null && vv.IsActive == ActivationTypeId.Active) + { + if (vv.VarFieldDefOid.Value == 22) + { + if (varFieldValue.ToString().Contains("Voll")) + chkBoxVoll.Checked = true; + else if (varFieldValue.ToString().Contains("Teil")) + chkBoxTeil.Checked = true; + } + else if (vv.VarFieldDefOid.Value == 23) + { + lblErwerbsmindB.Text = String.Format("{0:dd.MM.yyyy}", varFieldValue); + } + else if (vv.VarFieldDefOid.Value == 24) + { + lblErwerbsmindBef.Text = String.Format("{0:dd.MM.yyyy}", varFieldValue); + } + else if (vv.VarFieldDefOid.Value == 50) + { + lblZVAufnahme.Text = String.Format("{0:dd.MM.yyyy}", varFieldValue); + } + else if (vv.VarFieldDefOid.Value == 51) + { + lblZVBefristung.Text = String.Format("{0:dd.MM.yyyy}", varFieldValue); + } + else if (vv.VarFieldDefOid.Value == 52) + { + lblZVAusscheiden.Text = String.Format("{0:dd.MM.yyyy}", varFieldValue); + } + else if (vv.VarFieldDefOid.Value == 53) + { + lblTätigkeiten.Text = varFieldValue.ToString(); + } + } + } + } + + private void CreateArbeitszeitenTable(List zeiten, CustomerDataRO pRO, Customer c, DateTime end) + { + if (zeiten != null) + { + var pause = ""; + var pauseTag = ""; + + foreach (var vv in c.VarFieldValueList) + { + var varFieldValue = Utils.XMLDeserializeFromString(vv.SerializedValue, Type.GetType(vv.TypeName)); + if (varFieldValue != null && vv.IsActive == ActivationTypeId.Active) + { + if (vv.VarFieldDefOid.Value == 69) + { + if (varFieldValue.ToString() == "True") + { + pause = "n.Bedarf"; + pauseTag = pause; + } + } + } + } + + foreach (var az in zeiten) + { + if ((!az.GueltigVon.HasValue || az.GueltigVon <= end) && + (!az.GueltigBis.HasValue || az.GueltigBis >= end) && az.Eintraege != null) + { + foreach (var e in az.Eintraege) + { + pauseTag = pause; + if (e.Tag == AppointmentDayOfWeek.Montag) + { + if (e.Notice != "Pause") + { + lblMoBeginn.Text = e.UhrzeitVon; + lblMoEnde.Text = e.UhrzeitBis; + } + else + { + var std = GetPausenzeitFuerTag(e); + pauseTag = String.Format("{0:0}", std); + } + lblMoPause.Text = pauseTag; + } + else if (e.Tag == AppointmentDayOfWeek.Dienstag) + { + if (e.Notice != "Pause") + { + xrTableCell13.Text = e.UhrzeitVon; + xrTableCell32.Text = e.UhrzeitBis; + } + else + { + var std = GetPausenzeitFuerTag(e); + pauseTag = String.Format("{0:0}", std); + } + xrTableCell23.Text = pauseTag; + } + else if (e.Tag == AppointmentDayOfWeek.Mittwoch) + { + if (e.Notice != "Pause") + { + xrTableCell15.Text = e.UhrzeitVon; + xrTableCell33.Text = e.UhrzeitBis; + } + else + { + var std = GetPausenzeitFuerTag(e); + pauseTag = String.Format("{0:0}", std); + } + lblMiPause.Text = pauseTag; + } + else if (e.Tag == AppointmentDayOfWeek.Donnerstag) + { + if (e.Notice != "Pause") + { + xrTableCell16.Text = e.UhrzeitVon; + xrTableCell34.Text = e.UhrzeitBis; + } + else + { + var std = GetPausenzeitFuerTag(e); + pauseTag = String.Format("{0:0}", std); + } + xrTableCell25.Text = pauseTag; + } + else if (e.Tag == AppointmentDayOfWeek.Freitag) + { + if (e.Notice != "Pause") + { + xrTableCell17.Text = e.UhrzeitVon; + xrTableCell35.Text = e.UhrzeitBis; + } + else + { + var std = GetPausenzeitFuerTag(e); + pauseTag = String.Format("{0:0}", std); + } + xrTableCell26.Text = pauseTag; + } + else if (e.Tag == AppointmentDayOfWeek.Samstag) + { + if (e.Notice != "Pause") + { + xrTableCell19.Text = e.UhrzeitVon; + xrTableCell37.Text = e.UhrzeitBis; + } + else + { + var std = GetPausenzeitFuerTag(e); + pauseTag = String.Format("{0:0}", std); + } + xrTableCell28.Text = pauseTag; + } + else if (e.Tag == AppointmentDayOfWeek.Sonntag) + { + if (e.Notice != "Pause") + { + xrTableCell20.Text = e.UhrzeitVon; + xrTableCell38.Text = e.UhrzeitBis; + } + else + { + var std = GetPausenzeitFuerTag(e); + pauseTag = String.Format("{0:0}", std); + } + xrTableCell29.Text = pauseTag; + } + } + } + } + } + } + + //private void SetArbeitszeiten(CustomerDataRO pRO, long cbOid, Customer c, DateTime end) + // { + // int quarter = (int)Math.Ceiling(end.Month / (double)3); + // string wochenAZeitQ1; + // string wochenAZeitQ2; + // string wochenAZeitQ3; + // string wochenAZeitQ4; + // var pausch = ZuverdienstHelper.GetPauschalen(cbOid, c, end); + // var tage = ZuverdienstHelper.SetArbeitszeiten(pRO, cbOid, c, end); + + // foreach (var s in c.SupportConcepts) + // { + // foreach (var c2s in s.CostBearer2SupportConceptList) + // { + // if (c2s.CostBearer.Oid == cbOid) + // { + // foreach (var scap in c2s.ApprovalPeriodList) + // { + // if (scap.StartDate <= end.Date && end.Date <= scap.EndDate) + // { + // foreach (var vv in scap.CostBearer2SupportConcept.SupportConcept.VarFieldValueList) + // { + // var varFieldValue = Utils.XMLDeserializeFromString(vv.SerializedValue, Type.GetType(vv.TypeName)); + // if (varFieldValue != null && vv.IsActive == ActivationTypeId.Active) + // { + // if (vv.VarFieldDefOid.Value == 100) + // { + // wochenAZeitQ1 = String.Format("{0:0.00}", varFieldValue); + // xrCheckBox208.Checked = true; + // xrLabel247.Text += "" + wochenAZeitQ1; + // } + // else if (vv.VarFieldDefOid.Value == 101) + // { + // if (quarter > 1) + // { + // wochenAZeitQ2 = String.Format("{0:0.00}", varFieldValue); + // xrCheckBox209.Checked = true; + // xrLabel250.Text += "" + wochenAZeitQ2; + // lblWochenAZeit.Text = wochenAZeitQ2; + // } + // } + // else if (vv.VarFieldDefOid.Value == 102) + // { + // if (quarter > 2) + // { + // wochenAZeitQ3 = String.Format("{0:0.00}", varFieldValue); + // xrCheckBox210.Checked = true; + // xrLabel399.Text += "" + wochenAZeitQ3; + // lblWochenAZeit.Text = wochenAZeitQ3; + // } + + // } + // else if (vv.VarFieldDefOid.Value == 103) + // { + // if (quarter > 3) + // { + // wochenAZeitQ4 = String.Format("{0:0.00}", varFieldValue); + // xrCheckBox211.Checked = true; + // xrLabel251.Text += "" + wochenAZeitQ4; + // lblWochenAZeit.Text = wochenAZeitQ4; + // } + // } + // } + // } + // if (tage.wochenAZeitIstQ1 != 0) + // { + // xrCheckBox212.Checked = true; + // xrLabel228.Text += String.Format("{0}", tage.wochenAZeitIstQ1); + // } + // if (tage.wochenAZeitIstQ2 != 0) + // { + // xrCheckBox213.Checked = true; + // xrLabel225.Text += String.Format("{0}", tage.wochenAZeitIstQ2); + // } + // if (tage.wochenAZeitIstQ3 != 0) + // { + // xrCheckBox214.Checked = true; + // xrLabel217.Text += String.Format("{0}", tage.wochenAZeitIstQ3); + // } + // if (tage.wochenAZeitIstQ4 != 0) + // { + // xrCheckBox215.Checked = true; + // xrLabel224.Text += String.Format("{0}", tage.wochenAZeitIstQ4); + // } + // } + // } + // } + // } + // } + // if (pausch.motZuwend4 != 0 && pausch.dateMotZuwend4 != DateTime.MinValue && pausch.dateMotZuwend4 <= end) + // lblMotZuwendung.Text = String.Format("{0:0.00}", pausch.motZuwend4); + // else if (pausch.motZuwend3 != 0 && pausch.dateMotZuwend3 != DateTime.MinValue && pausch.dateMotZuwend3 <= end) + // lblMotZuwendung.Text = String.Format("{0:0.00}", pausch.motZuwend3); + // else if (pausch.motZuwend2 != 0 && pausch.dateMotZuwend2 != DateTime.MinValue && pausch.dateMotZuwend2 <= end) + // lblMotZuwendung.Text = String.Format("{0:0.00}", pausch.motZuwend2); + // else if (pausch.motZuwend1 != 0 && pausch.dateMotZuwend1 != DateTime.MinValue && pausch.dateMotZuwend1 <= end) + // lblMotZuwendung.Text = String.Format("{0:0.00}", pausch.motZuwend1); + + // if (pausch.fahrPausch2 != 0 && pausch.dateFahrPausch2 != DateTime.MinValue && pausch.dateFahrPausch2 <= end) + // lblFahrtpauschale.Text = String.Format("{0:0.00}", pausch.fahrPausch2); + // else if (pausch.fahrPausch1 != 0 && pausch.dateFahrPausch1 != DateTime.MinValue && pausch.dateFahrPausch1 <= end) + // lblFahrtpauschale.Text = String.Format("{0:0.00}", pausch.fahrPausch1); + //} + + private void SetAbwesenheiten(CustomerDataRO pRO, Customer c, DateTime end) + { + DateTime jahresbeginn = new DateTime(end.Year, 1, 1); + decimal entschuldigtQ1 = 0; + decimal entschuldigtQ2 = 0; + decimal entschuldigtQ3 = 0; + decimal entschuldigtQ4 = 0; + decimal unentschuldigtQ1 = 0; + decimal unentschuldigtQ2 = 0; + decimal unentschuldigtQ3 = 0; + decimal unentschuldigtQ4 = 0; + if (c.AbsenceTimes != null) + { + foreach (var at in c.AbsenceTimes) + { + if (at.AbsenceReason.BillableMinutes.HasValue && at.AbsenceReason.Description.Contains("ZV")) + { + if (at.Start.HasValue && at.End.HasValue && (at.Start.Value >= jahresbeginn || at.End.Value >= end) && at.Start.Value <= end) + { + for (int i = 0; i <= (at.End.Value - at.Start.Value).Days; i++) + { + if (at.AbsenceReason.Description.Contains("Feiertag") || at.AbsenceReason.Description.Contains("Urlaub") || + at.AbsenceReason.Description.Contains("entschuldigt") || at.AbsenceReason.Description.Contains("Krank") || at.AbsenceReason.Description.Contains("Sonstiges")) + { + if (at.Start.Value.AddDays(i) >= jahresbeginn && at.Start.Value.AddDays(i) < jahresbeginn.AddMonths(3)) + entschuldigtQ1 += 1; + else if (at.Start.Value.AddDays(i) >= jahresbeginn.AddMonths(3) && at.Start.Value.AddDays(i) < jahresbeginn.AddMonths(6)) + entschuldigtQ2 += 1; + else if (at.Start.Value.AddDays(i) >= jahresbeginn.AddMonths(6) && at.Start.Value.AddDays(i) < jahresbeginn.AddMonths(9)) + entschuldigtQ3 += 1; + else if (at.Start.Value.AddDays(i) >= jahresbeginn.AddMonths(9) && at.Start.Value.AddDays(i) < jahresbeginn.AddMonths(12)) + entschuldigtQ4 += 1; + } + + else if (at.AbsenceReason.Description.Contains("unentschuldigt")) + { + if (at.Start.Value.AddDays(i) >= jahresbeginn && at.Start.Value.AddDays(i) < jahresbeginn.AddMonths(3)) + unentschuldigtQ1 += 1; + else if (at.Start.Value.AddDays(i) >= jahresbeginn.AddMonths(3) && at.Start.Value.AddDays(i) < jahresbeginn.AddMonths(6)) + unentschuldigtQ2 += 1; + else if (at.Start.Value.AddDays(i) >= jahresbeginn.AddMonths(6) && at.Start.Value.AddDays(i) < jahresbeginn.AddMonths(9)) + unentschuldigtQ3 += 1; + else if (at.Start.Value.AddDays(i) >= jahresbeginn.AddMonths(9) && at.Start.Value.AddDays(i) < jahresbeginn.AddMonths(12)) + unentschuldigtQ4 += 1; + } + } + } + } + } + if (entschuldigtQ1 != 0) + { + xrCheckBox217.Checked = true; + xrLabel297.Text += String.Format("{0}", entschuldigtQ1); + } + if (unentschuldigtQ1 != 0) + { + xrCheckBox218.Checked = true; + xrLabel291.Text += String.Format("{0}", unentschuldigtQ1); + } + if (entschuldigtQ2 != 0) + { + xrCheckBox220.Checked = true; + xrLabel259.Text += String.Format("{0}", entschuldigtQ2); + } + if (unentschuldigtQ2 != 0) + { + xrCheckBox221.Checked = true; + xrLabel262.Text += String.Format("{0}", unentschuldigtQ2); + } + if (entschuldigtQ3 != 0) + { + xrCheckBox223.Checked = true; + xrLabel265.Text += String.Format("{0}", entschuldigtQ3); + } + if (unentschuldigtQ3 != 0) + { + xrCheckBox224.Checked = true; + xrLabel268.Text += String.Format("{0}", unentschuldigtQ3); + } + if (entschuldigtQ4 != 0) + { + xrCheckBox226.Checked = true; + xrLabel272.Text += String.Format("{0}", entschuldigtQ4); + } + if (unentschuldigtQ4 != 0) + { + xrCheckBox227.Checked = true; + xrLabel269.Text += String.Format("{0}", unentschuldigtQ4); + } + } + } + + private decimal GetPausenzeitFuerTag(ArbeitszeitEintragDC e) + { + var day = DateTime.Now; + decimal min = 0; + + String dateStr1 = String.Format("{0:dd.MM.yyyy} {1}", day, e.UhrzeitVon); + String dateStr2 = String.Format("{0:dd.MM.yyyy} {1}", day, e.UhrzeitBis); + + DateTime date1; + DateTime date2; + + if (DateTime.TryParse(dateStr1, out date1) && DateTime.TryParse(dateStr2, out date2)) + min += (decimal)date2.Subtract(date1).TotalMinutes; + + return min; + } + + private void SetVarFieldValuesTeilnehmer(CustomerDataRO pRO, Customer c) + { + String haushalt = ""; // Oid = 2 + String ausbildung = ""; // Oid = 3 + String erfahrung = ""; // Oid = 4 + String tätigkeiten = ""; // Oid = 5 + String tätigkeiten2 = ""; // Oid = 7 + String tätigkeiten3 = ""; // Oid = 9 + String unterhalt = ""; // Oid = 13 + String ausweis = ""; // Oid = 15 + String vollmacht = ""; // Oid = 16 + String hilfen = ""; // Oid = 17 + + foreach (var vv in c.VarFieldValueList) + { + var varFieldValue = Utils.XMLDeserializeFromString(vv.SerializedValue, Type.GetType(vv.TypeName)); + if (varFieldValue != null && vv.IsActive == ActivationTypeId.Active) + { + if (vv.VarFieldDefOid.Value == 7) + { + if (varFieldValue.ToString() == "True") + chkBoxEinpersonenhh.Checked = true; + } + else if (vv.VarFieldDefOid.Value == 8) + { + chkBoxMehrpersonenhh.Checked = true; + haushalt = varFieldValue.ToString(); + if (haushalt.Contains("Partner/in und Kind/ern")) + xrCheckBox15.Checked = true; + else if (haushalt.Contains("Partner/in")) + xrCheckBox14.Checked = true; + else if (haushalt.Contains("alleinerziehend")) + xrCheckBox16.Checked = true; + else if (haushalt.Contains("Wohngemeinschaft")) + xrCheckBox17.Checked = true; + else if (haushalt.Contains("Eltern")) + xrCheckBox18.Checked = true; + else if (haushalt == " - ") + chkBoxMehrpersonenhh.Checked = false; + } + else if (vv.VarFieldDefOid.Value == 9) + { + ausbildung = varFieldValue.ToString(); + if (ausbildung.Contains("Berufsausbildung")) + xrCheckBox19.Checked = true; + else if (ausbildung.Contains("Studium")) + xrCheckBox20.Checked = true; + else if (ausbildung.Contains("Berufsabschluss")) + xrCheckBox21.Checked = true; + } + else if (vv.VarFieldDefOid.Value == 10) + { + erfahrung = varFieldValue.ToString(); + if (erfahrung.Contains("Keine")) + xrCheckBox22.Checked = true; + else if (erfahrung.Contains("Bis")) + xrCheckBox23.Checked = true; + else if (erfahrung.Contains("Länger")) + xrCheckBox24.Checked = true; + } + else if (vv.VarFieldDefOid.Value == 11) + { + xrCheckBox25.Checked = true; + tätigkeiten = varFieldValue.ToString(); + if (tätigkeiten.Contains("Vollzeit")) + xrCheckBox26.Checked = true; + else if (tätigkeiten.Contains("Teilzeit")) + xrCheckBox27.Checked = true; + else if (tätigkeiten.Contains("Geringfügige")) + xrCheckBox28.Checked = true; + else if (tätigkeiten == " - ") + xrCheckBox25.Checked = false; + } + else if (vv.VarFieldDefOid.Value == 12 && varFieldValue.ToString() != "") + { + xrCheckBox25.Checked = true; + xrCheckBox29.Checked = true; + xrLabel110.Text = "Sonstiges: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 13) + { + xrCheckBox30.Checked = true; + tätigkeiten2 = varFieldValue.ToString(); + if (tätigkeiten2.Contains("WfbM")) + xrCheckBox31.Checked = true; + else if (tätigkeiten2.Contains("Zuverdienst")) + xrCheckBox32.Checked = true; + else if (tätigkeiten2.Contains("Tagesstätte")) + xrCheckBox33.Checked = true; + else if (tätigkeiten2 == " - ") + xrCheckBox30.Checked = false; + } + else if (vv.VarFieldDefOid.Value == 14 && varFieldValue.ToString() != "") + { + xrCheckBox30.Checked = true; + xrCheckBox34.Checked = true; + xrLabel115.Text = "Sonstiges: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 15) + { + xrCheckBox35.Checked = true; + tätigkeiten3 = varFieldValue.ToString(); + if (tätigkeiten3.Contains("Elternzeit")) + xrCheckBox36.Checked = true; + else if (tätigkeiten3.Contains("Angehörigen")) + xrCheckBox37.Checked = true; + else if (tätigkeiten3.Contains("Ehrenamt")) + xrCheckBox38.Checked = true; + else if (tätigkeiten3 == " - ") + xrCheckBox35.Checked = false; + } + else if (vv.VarFieldDefOid.Value == 16 && varFieldValue.ToString() != "") + { + xrCheckBox35.Checked = true; + xrCheckBox39.Checked = true; + xrLabel125.Text = "Sonstiges: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 17 && varFieldValue.ToString() != "") + { + xrCheckBox40.Checked = true; + xrCheckBox41.Checked = true; + xrLabel127.Text = "und zwar: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 18) + { + if (varFieldValue.ToString() == "True") + xrCheckBox42.Checked = true; + } + else if (vv.VarFieldDefOid.Value == 20) + { + unterhalt = varFieldValue.ToString(); + lblLebensunterhalt.Text = unterhalt; + if (unterhalt.Contains("BU")) + xrCheckBox43.Checked = true; + else if (unterhalt.Contains("Teil")) + xrCheckBox44.Checked = true; + else if (unterhalt.Contains("Voll")) + xrCheckBox45.Checked = true; + else if (unterhalt.Contains("Grund")) + xrCheckBox46.Checked = true; + else if (unterhalt.Contains("Hilfe")) + xrCheckBox47.Checked = true; + else if (unterhalt.Contains("Vermögen")) + xrCheckBox48.Checked = true; + else if (unterhalt.Contains("Angehörigen")) + xrCheckBox49.Checked = true; + //else if (unterhalt == " - ") + // xrCheckBox43.Checked = false; + } + else if (vv.VarFieldDefOid.Value == 21 && varFieldValue.ToString() != "") + { + lblLebensunterhalt.Text += varFieldValue.ToString(); + xrCheckBox50.Checked = true; + xrLabel137.Text = "Sonstiges: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 25) + { + ausweis = varFieldValue.ToString(); + if (ausweis.Contains("keine")) + xrCheckBox51.Checked = true; + else if (ausweis.Contains("Beantragt")) + xrCheckBox52.Checked = true; + else if (ausweis.Contains("vor")) + xrCheckBox53.Checked = true; + } + else if (vv.VarFieldDefOid.Value == 26) + { + vollmacht = varFieldValue.ToString(); + if (vollmacht.Contains("keine")) + xrCheckBox54.Checked = true; + else if (vollmacht.Contains("Beantragt")) + xrCheckBox55.Checked = true; + else if (vollmacht.Contains("vor")) + xrCheckBox56.Checked = true; + } + else if (vv.VarFieldDefOid.Value == 27) + { + hilfen = varFieldValue.ToString(); + if (hilfen.Contains("keine")) + xrCheckBox57.Checked = true; + else if (hilfen.Contains("Einzelwohnen")) + xrCheckBox58.Checked = true; + else if (hilfen.Contains("WG")) + xrCheckBox59.Checked = true; + else if (hilfen.Contains("Dienst")) + xrCheckBox60.Checked = true; + else if (hilfen.Contains("Pharma")) + xrCheckBox61.Checked = true; + else if (hilfen.Contains("Psycho")) + xrCheckBox62.Checked = true; + } + else if (vv.VarFieldDefOid.Value == 28 && varFieldValue.ToString() != "") + { + xrCheckBox63.Checked = true; + xrLabel196.Text = "Sonstiges: " + varFieldValue.ToString(); + } + } + } + } + + private void SetVarFieldValuesPlatz(CustomerDataRO pRO, Customer c) + { + String zeit = ""; // Oid = 30 + String grund = ""; // Oid = 31 + String tätigkeiten = ""; // Oid = 34 + String tätigkeiten2 = ""; // Oid = 36 + String tätigkeiten3 = ""; // Oid = 38 + + foreach (var vv in c.VarFieldValueList) + { + var varFieldValue = Utils.XMLDeserializeFromString(vv.SerializedValue, Type.GetType(vv.TypeName)); + if (varFieldValue != null && vv.IsActive == ActivationTypeId.Active) + { + if (vv.VarFieldDefOid.Value == 70) + { + zeit = varFieldValue.ToString(); + if (zeit.Contains("Während der ZV-Erprobung")) + xrCheckBox228.Checked = true; + else if (zeit.Contains("Zum Ende der ZV-Erprobung")) + xrCheckBox229.Checked = true; + else if (zeit.Contains("Während der ZV-Befristung")) + xrCheckBox230.Checked = true; + else if (zeit.Contains("Zum Ende der ZV-Befristung")) + xrCheckBox231.Checked = true; + } + else if (vv.VarFieldDefOid.Value == 71) + { + grund = varFieldValue.ToString(); + if (grund.Contains("Befristung")) + xrCheckBox232.Checked = true; + else if (grund.Contains("Teilnehmer")) + xrCheckBox233.Checked = true; + else if (grund.Contains("Platzanbieter")) + xrCheckBox234.Checked = true; + else if (grund.Contains("InArbeit")) + xrCheckBox235.Checked = true; + else if (grund.Contains("Krank")) + xrCheckBox236.Checked = true; + } + else if (vv.VarFieldDefOid.Value == 72 && varFieldValue.ToString() != "") + { + xrCheckBox237.Checked = true; + xrLabel283.Text = "Umzug nach: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 73 && varFieldValue.ToString() != "") + { + xrCheckBox238.Checked = true; + xrLabel360.Text = "Sonstiges: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 74) + { + xrCheckBox239.Checked = true; + tätigkeiten = varFieldValue.ToString(); + if (tätigkeiten.Contains("Vollzeit")) + xrCheckBox240.Checked = true; + else if (tätigkeiten.Contains("Teilzeit")) + xrCheckBox241.Checked = true; + else if (tätigkeiten.Contains("Geringfügige")) + xrCheckBox242.Checked = true; + else if (tätigkeiten == " - ") + xrCheckBox239.Checked = false; + } + else if (vv.VarFieldDefOid.Value == 75 && varFieldValue.ToString() != "") + { + xrCheckBox239.Checked = true; + xrCheckBox243.Checked = true; + xrLabel294.Text = "Sonstiges: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 76) + { + xrCheckBox244.Checked = true; + tätigkeiten2 = varFieldValue.ToString(); + if (tätigkeiten2.Contains("WfbM")) + xrCheckBox245.Checked = true; + else if (tätigkeiten2.Contains("Zuverdienst")) + xrCheckBox246.Checked = true; + else if (tätigkeiten2.Contains("Tagesstätte")) + xrCheckBox247.Checked = true; + else if (tätigkeiten2 == " - ") + xrCheckBox244.Checked = false; + } + else if (vv.VarFieldDefOid.Value == 77 && varFieldValue.ToString() != "") + { + xrCheckBox248.Checked = true; + xrCheckBox244.Checked = true; + xrLabel304.Text = "Sonstiges: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 78) + { + xrCheckBox249.Checked = true; + tätigkeiten3 = varFieldValue.ToString(); + if (tätigkeiten3.Contains("Elternzeit")) + xrCheckBox250.Checked = true; + else if (tätigkeiten3.Contains("Angehörigen")) + xrCheckBox251.Checked = true; + else if (tätigkeiten3.Contains("Ehrenamt")) + xrCheckBox252.Checked = true; + else if (tätigkeiten3 == " - ") + xrCheckBox249.Checked = false; + } + else if (vv.VarFieldDefOid.Value == 79 && varFieldValue.ToString() != "") + { + xrCheckBox249.Checked = true; + xrCheckBox253.Checked = true; + xrLabel314.Text = "Sonstiges: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 80 && varFieldValue.ToString() != "") + { + xrCheckBox254.Checked = true; + xrCheckBox255.Checked = true; + xrLabel326.Text = "und zwar: " + varFieldValue.ToString(); + } + else if (vv.VarFieldDefOid.Value == 81) + { + if (varFieldValue.ToString() == "True") + xrCheckBox256.Checked = true; + } + } + } + } + } +} diff --git a/ReportImp/SKFLeverkusen/Betreuungsvertrag.resx b/ReportImp/SKFLeverkusen/Betreuungsvertrag.resx new file mode 100644 index 000000000..289774a4b --- /dev/null +++ b/ReportImp/SKFLeverkusen/Betreuungsvertrag.resx @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + ewBcAHIAdABmADEAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMAAgAEMAYQBsAGkAYgByAGkAOwB9AHsAXABmADEAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AewBcAGYAMgAgAEEAcgBpAGEAbAA7AH0AfQB7AFwAYwBvAGwAbwByAHQAYgBsACAAOwBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMAAgADsAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADIANQA1ACAAOwBcAHIAZQBkADEANQAzAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADUAMQAgADsAXAByAGUAZAAxADIAOABcAGcAcgBlAGUAbgAxADIAOABcAGIAbAB1AGUAMQAyADgAIAA7AH0AewBcACoAXABkAGUAZgBjAGgAcAAgAFwAZgAxAFwAZgBzADIANAB9AHsAXABzAHQAeQBsAGUAcwBoAGUAZQB0ACAAewBcAHEAbABcAGYAMQBcAGYAcwAyADQAIABOAG8AcgBtAGEAbAA7AH0AewBcAHMAMQBcAHMAYgBhAHMAZQBkAG8AbgAwAFwAcwBuAGUAeAB0ADEAXABxAGwAXAB0AHEAYwBcAHQAeAA0ADUAMwA2AFwAdABxAHIAXAB0AHgAOQAwADcAMgBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmAHMAMgA0ACAASwBvAHAAZgB6AGUAaQBsAGUAOwB9AHsAXABzADIAXABzAGIAYQBzAGUAZABvAG4AMABcAHMAbgBlAHgAdAAyAFwAcQBsAFwAcwBhADYAMABcAHQAeAAyADgANABcAHQAeAAxADEAMwA0AFwAdAB4ADIAOAAzADUAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAaQBcAGYAcwAyADIAIABCAG8AZAB5ACAAVABlAHgAdAAgADIAOwB9AHsAXAAqAFwAYwBzADMAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABEAGUAZgBhAHUAbAB0ACAAUABhAHIAYQBnAHIAYQBwAGgAIABGAG8AbgB0ADsAfQB7AFwAKgBcAGMAcwA0AFwAcwBiAGEAcwBlAGQAbwBuADMAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABMAGkAbgBlACAATgB1AG0AYgBlAHIAOwB9AHsAXAAqAFwAYwBzADUAXAB1AGwAXABmADEAXABmAHMAMgA0AFwAYwBmADIAIABIAHkAcABlAHIAbABpAG4AawA7AH0AewBcACoAXAB0AHMANgBcAHQAcwByAG8AdwBkAFwAZgAxAFwAZgBzADIANABcAHEAbABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBsADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGwAMQAwADgAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAYgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgB0ADMAXAB0AHMAdgBlAHIAdABhAGwAdABcAGMAbAB0AHgAbAByAHQAYgAgAE4AbwByAG0AYQBsACAAVABhAGIAbABlADsAfQB7AFwAKgBcAHQAcwA3AFwAdABzAHIAbwB3AGQAXABzAGIAYQBzAGUAZABvAG4ANgBcAGYAMQBcAGYAcwAyADQAXABxAGwAXAB0AHIAYgByAGQAcgB0AFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGwAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAYgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgByAFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGgAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAdgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAbAAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABsADEAMAA4AFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwB2AGUAcgB0AGEAbAB0AFwAYwBsAHQAeABsAHIAdABiACAAVABhAGIAbABlACAAUwBpAG0AcABsAGUAIAAxADsAfQB9AHsAXAAqAFwAbABpAHMAdAB0AGEAYgBsAGUAIAB7AFwAbABpAHMAdABcAGwAaQBzAHQAdABlAG0AcABsAGEAdABlAGkAZAAtADEAewBcAGwAaQBzAHQAbABlAHYAZQBsAFwAbABlAHYAZQBsAG4AZgBjADAAXABsAGUAdgBlAGwAbgBmAGMAbgAwAFwAbABlAHYAZQBsAGoAYwAwAFwAbABlAHYAZQBsAGoAYwBuADAAXABsAGUAdgBlAGwAZgBvAGwAbABvAHcAMABcAGwAZQB2AGUAbABzAHQAYQByAHQAYQB0ADEAewBcAGwAZQB2AGUAbAB0AGUAeAB0ACAAXAAnADAAMwAoAFwAJwAwADAAKQA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADIAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAzADYAMABcAGwAaQA3ADIAMABcAGwAaQBuADcAMgAwAH0AewBcAGwAaQBzAHQAbABlAHYAZQBsAFwAbABlAHYAZQBsAG4AZgBjADQAXABsAGUAdgBlAGwAbgBmAGMAbgA0AFwAbABlAHYAZQBsAGoAYwAwAFwAbABlAHYAZQBsAGoAYwBuADAAXABsAGUAdgBlAGwAZgBvAGwAbABvAHcAMABcAGwAZQB2AGUAbABzAHQAYQByAHQAYQB0ADEAewBcAGwAZQB2AGUAbAB0AGUAeAB0ACAAXAAnADAAMgBcACcAMAAxAC4AOwB9AHsAXABsAGUAdgBlAGwAbgB1AG0AYgBlAHIAcwBcACcAMAAxADsAfQBcAGwAZQB2AGUAbABsAGUAZwBhAGwAMABcAGwAZQB2AGUAbABuAG8AcgBlAHMAdABhAHIAdAAwAFwAZgBpAC0AMwA2ADAAXABsAGkAMQA0ADQAMABcAGwAaQBuADEANAA0ADAAfQB7AFwAbABpAHMAdABsAGUAdgBlAGwAXABsAGUAdgBlAGwAbgBmAGMAMgBcAGwAZQB2AGUAbABuAGYAYwBuADIAXABsAGUAdgBlAGwAagBjADIAXABsAGUAdgBlAGwAagBjAG4AMgBcAGwAZQB2AGUAbABmAG8AbABsAG8AdwAwAFwAbABlAHYAZQBsAHMAdABhAHIAdABhAHQAMQB7AFwAbABlAHYAZQBsAHQAZQB4AHQAIABcACcAMAAyAFwAJwAwADIALgA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADEAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAxADgAMABcAGwAaQAyADEANgAwAFwAbABpAG4AMgAxADYAMAB9AHsAXABsAGkAcwB0AGwAZQB2AGUAbABcAGwAZQB2AGUAbABuAGYAYwAwAFwAbABlAHYAZQBsAG4AZgBjAG4AMABcAGwAZQB2AGUAbABqAGMAMABcAGwAZQB2AGUAbABqAGMAbgAwAFwAbABlAHYAZQBsAGYAbwBsAGwAbwB3ADAAXABsAGUAdgBlAGwAcwB0AGEAcgB0AGEAdAAxAHsAXABsAGUAdgBlAGwAdABlAHgAdAAgAFwAJwAwADIAXAAnADAAMwAuADsAfQB7AFwAbABlAHYAZQBsAG4AdQBtAGIAZQByAHMAXAAnADAAMQA7AH0AXABsAGUAdgBlAGwAbABlAGcAYQBsADAAXABsAGUAdgBlAGwAbgBvAHIAZQBzAHQAYQByAHQAMABcAGYAaQAtADMANgAwAFwAbABpADIAOAA4ADAAXABsAGkAbgAyADgAOAAwAH0AewBcAGwAaQBzAHQAbABlAHYAZQBsAFwAbABlAHYAZQBsAG4AZgBjADQAXABsAGUAdgBlAGwAbgBmAGMAbgA0AFwAbABlAHYAZQBsAGoAYwAwAFwAbABlAHYAZQBsAGoAYwBuADAAXABsAGUAdgBlAGwAZgBvAGwAbABvAHcAMABcAGwAZQB2AGUAbABzAHQAYQByAHQAYQB0ADEAewBcAGwAZQB2AGUAbAB0AGUAeAB0ACAAXAAnADAAMgBcACcAMAA0AC4AOwB9AHsAXABsAGUAdgBlAGwAbgB1AG0AYgBlAHIAcwBcACcAMAAxADsAfQBcAGwAZQB2AGUAbABsAGUAZwBhAGwAMABcAGwAZQB2AGUAbABuAG8AcgBlAHMAdABhAHIAdAAwAFwAZgBpAC0AMwA2ADAAXABsAGkAMwA2ADAAMABcAGwAaQBuADMANgAwADAAfQB7AFwAbABpAHMAdABsAGUAdgBlAGwAXABsAGUAdgBlAGwAbgBmAGMAMgBcAGwAZQB2AGUAbABuAGYAYwBuADIAXABsAGUAdgBlAGwAagBjADIAXABsAGUAdgBlAGwAagBjAG4AMgBcAGwAZQB2AGUAbABmAG8AbABsAG8AdwAwAFwAbABlAHYAZQBsAHMAdABhAHIAdABhAHQAMQB7AFwAbABlAHYAZQBsAHQAZQB4AHQAIABcACcAMAAyAFwAJwAwADUALgA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADEAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAxADgAMABcAGwAaQA0ADMAMgAwAFwAbABpAG4ANAAzADIAMAB9AHsAXABsAGkAcwB0AGwAZQB2AGUAbABcAGwAZQB2AGUAbABuAGYAYwAwAFwAbABlAHYAZQBsAG4AZgBjAG4AMABcAGwAZQB2AGUAbABqAGMAMABcAGwAZQB2AGUAbABqAGMAbgAwAFwAbABlAHYAZQBsAGYAbwBsAGwAbwB3ADAAXABsAGUAdgBlAGwAcwB0AGEAcgB0AGEAdAAxAHsAXABsAGUAdgBlAGwAdABlAHgAdAAgAFwAJwAwADIAXAAnADAANgAuADsAfQB7AFwAbABlAHYAZQBsAG4AdQBtAGIAZQByAHMAXAAnADAAMQA7AH0AXABsAGUAdgBlAGwAbABlAGcAYQBsADAAXABsAGUAdgBlAGwAbgBvAHIAZQBzAHQAYQByAHQAMABcAGYAaQAtADMANgAwAFwAbABpADUAMAA0ADAAXABsAGkAbgA1ADAANAAwAH0AewBcAGwAaQBzAHQAbABlAHYAZQBsAFwAbABlAHYAZQBsAG4AZgBjADQAXABsAGUAdgBlAGwAbgBmAGMAbgA0AFwAbABlAHYAZQBsAGoAYwAwAFwAbABlAHYAZQBsAGoAYwBuADAAXABsAGUAdgBlAGwAZgBvAGwAbABvAHcAMABcAGwAZQB2AGUAbABzAHQAYQByAHQAYQB0ADEAewBcAGwAZQB2AGUAbAB0AGUAeAB0ACAAXAAnADAAMgBcACcAMAA3AC4AOwB9AHsAXABsAGUAdgBlAGwAbgB1AG0AYgBlAHIAcwBcACcAMAAxADsAfQBcAGwAZQB2AGUAbABsAGUAZwBhAGwAMABcAGwAZQB2AGUAbABuAG8AcgBlAHMAdABhAHIAdAAwAFwAZgBpAC0AMwA2ADAAXABsAGkANQA3ADYAMABcAGwAaQBuADUANwA2ADAAfQB7AFwAbABpAHMAdABsAGUAdgBlAGwAXABsAGUAdgBlAGwAbgBmAGMAMgBcAGwAZQB2AGUAbABuAGYAYwBuADIAXABsAGUAdgBlAGwAagBjADIAXABsAGUAdgBlAGwAagBjAG4AMgBcAGwAZQB2AGUAbABmAG8AbABsAG8AdwAwAFwAbABlAHYAZQBsAHMAdABhAHIAdABhAHQAMQB7AFwAbABlAHYAZQBsAHQAZQB4AHQAIABcACcAMAAyAFwAJwAwADgALgA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADEAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAxADgAMABcAGwAaQA2ADQAOAAwAFwAbABpAG4ANgA0ADgAMAB9AHsAXABsAGkAcwB0AG4AYQBtAGUAIAA7AH0AXABsAGkAcwB0AGkAZAAxAH0AfQB7AFwAKgBcAGwAaQBzAHQAbwB2AGUAcgByAGkAZABlAHQAYQBiAGwAZQAgAHsAXABsAGkAcwB0AG8AdgBlAHIAcgBpAGQAZQBcAGwAaQBzAHQAaQBkADEAXABsAGkAcwB0AG8AdgBlAHIAcgBpAGQAZQBjAG8AdQBuAHQAMABcAGwAcwAxAH0AfQBcAG4AbwB1AGkAYwBvAG0AcABhAHQAXABzAHAAbAB5AHQAdwBuAGkAbgBlAFwAaAB0AG0AYQB1AHQAcwBwAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGgAeQBwAGgAcABhAHIAMABcAG4AbwB3AGkAZABjAHQAbABwAGEAcgB7AFwAcwBoAHAAewBcACoAXABzAGgAcABpAG4AcwB0AFwAcwBoAHAAbABlAGYAdAA4ADQANwA4AFwAcwBoAHAAdABvAHAALQAyADUAMQBcAHMAaABwAHIAaQBnAGgAdAA5ADUAOAA0AFwAcwBoAHAAYgBvAHQAdABvAG0AMQA0ADQAMABcAHMAaABwAHcAcgAzAFwAcwBoAHAAZgBiAGwAdwB0AHgAdAAwAFwAcwBoAHAAYgB4AGMAbwBsAHUAbQBuAFwAcwBoAHAAYgB4AGkAZwBuAG8AcgBlAFwAcwBoAHAAYgB5AHAAYQByAGEAXABzAGgAcABiAHkAaQBnAG4AbwByAGUAewBcAHMAcAB7AFwAcwBuACAAZgBMAGkAbgBlAH0AewBcAHMAdgAgADAAfQB9AHsAXABzAHAAewBcAHMAbgAgAGYARgBpAGwAbABlAGQAfQB7AFwAcwB2ACAAMAB9AH0AewBcAHMAcAB7AFwAcwBuACAAcABvAHMAcgBlAGwAaAB9AHsAXABzAHYAIAAyAH0AfQB7AFwAcwBwAHsAXABzAG4AIABwAG8AcwByAGUAbAB2AH0AewBcAHMAdgAgADIAfQB9AHsAXABzAHAAewBcAHMAbgAgAGYAQgBlAGgAaQBuAGQARABvAGMAdQBtAGUAbgB0AH0AewBcAHMAdgAgADAAfQB9AHsAXABzAHAAewBcAHMAbgAgAHAAaQBiAH0AewBcAHMAdgB7AFwAcABpAGMAdABcAHAAbgBnAGIAbABpAHAAXABwAGkAYwB3ADMAMgAwADIAXABwAGkAYwBoADQAOAA5ADUAXABwAGkAYwB3AGcAbwBhAGwAMQA4ADEANQBcAHAAaQBjAGgAZwBvAGEAbAAyADcANwA1AFwAcABpAGMAcwBjAGEAbABlAHgANgAxAFwAcABpAGMAcwBjAGEAbABlAHkANgAxACAADQAKADgAOQA1ADAANABlADQANwAwAGQAMABhADEAYQAwAGEAMAAwADAAMAAwADAAMABkADQAOQA0ADgANAA0ADUAMgAwADAAMAAwADAAMAA3ADkAMAAwADAAMAAwADAAYgA5ADAAOAAwADYAMAAwADAAMAAwADAAMABjADEAMgA5ADAAZgBkADAAMAAwADAAMAAwADAANAA2ADcANAAxADQAZAA0ADEAMAAwADAAMABiADEAOABmADAAYgBmAGMANgAxADAANQAwADAAMAAwADAAMAAwADkANwAwADQAOAA1ADkANwAzADAAMAAwADAAMABlAGMAMwAwADAAMAAwADAAZQBjADMAMAAxAGMANwA2AGYAYQA4ADYANAAwADAAMAAwADAAZQA1AGUANAA5ADQANAA0ADEANQA0ADcAOAA1AGUAZQBkADkAYwBiADEAYQBlADIAZAAzADkAMQAxADQANQBmADkAMQBkADMAMgA3AGUAOAAwADQAZgAxADgAOAA5ADkAMAA4ADAAOAA4ADEAOAANAAoAZgAxADAAMQBmADAAMAAxADQAOAA5ADMANABlADQAMgA0ADgANAA0ADQANAA0ADYAYwAwADIAMAAyADEAMgAxADgANAAxADAAYwAxADkAMwA0ADYAMQAwADkAMAAwADAAMAAxADEAMQAxADAAMQAwADAAMQAwADkAZAAxAGEAMABmADUANwA0ADAAZAAyAGQAZABmAGIAZABjAGIANgA1AGIANwBiAGIAYwBmAGIAOQBkADcAZABlAGQAMgBkADYAYwBjADkAYwBlADcANwA2ADcANwBkADcAYgAyAGMAYgA2ADUAOQBmAGYAMwBlADYAMgBiADUAZgA2AGUAYgBkADcAYgA2AGQAYwA4ADAAYgA2ADgANAAzADUAZQA0ADAAMQBiAGYAMgAwADIAZABhADkAMAAxADcAZAAwADgANgBiAGMAOAAwADMANgBlADQAMAA1AGIANAAyADEAMgBmAGEAMAAwAGQANwA5ADAAMQA2AGQAYwA4ADAAYgA2ADgANAAzADUAZQA0ADAAMQBiAA0ACgBmADIAMAAyAGQAYQA5ADAAMQA3AGQAMABiAGIAOAA2AGYAYwBjAGIANgBmADcAZAAzADcAZQBkADMAZgBmAGQAZgA0AGYAMwA5ADcAYQBiAGQAZQA5AGYAZABlADMANQBlADQAOQBmADcAZABmADUAOQAzAGIANAA3AGYAZgA3AGMAMwAxAGYAYgBkADUAYwBmADUAZgBlAGIANAAyADEAYgBmADcAOAA0ADMANwBlAGEAMwA1ADIAMwAwADkAZAAzADcAZQA0ADEAYgBmADUAYwBmAGIAZgBmAGQAZgBkAGUANQBkAGYAYwBlADQAYgBjADEANwA0ADkAZQAwADUAZgA5ADEAZgA3AGYAZgBjAGYAMwBjAGIAYgBmADMAZAA4AGYAOQBlADAANgBmADIANwBmAGYAZQBmADUAZQBmADgAZgA4ADEAMgA2AGUAMAA3AGYAZgA5AGQANQA2AGYANQBlADMAZQAzAGQAYQA3ADEAYQA2ADQAZQA0AGIAMwA5ADAANwA5AGUANgA1AGYADQAKADcAYwBmADIAZQBkADgAZgA3AGQAZgAxAGMAZgA2ADcAOAAyAGYAZAAxADQAOQAwADAAOQBjADgAYwBmAGIAZgBmAGUAYwBkAGYAZgAwADUAZgBjAGYAMwBhAGYANwBkAGUAMwAyADMAZgA0AGIAMwAyAGEAZgBkADYANQAzAGMAMABhADkAOQBlADcAZgBjAGUAZABmADcANwBmADMAMABiADUAYwBmAGQAOQA3AGEAMwA4ADYANAA2ADYAOAAwADAAYQAxADAAZABiADkAYQBiADMANQAyAGYAZAAzAGEAOABmADAAMgBlADEAMwA5ADUANQA3AGYAYwA1AGMAYwBlAGEAOQA5ADQAYgBkADAAOAA4ADEAZQAwAGUAZgA5AGEAZgA1AGYAZgBjADUAZQAwADYAMAA3ADMAMwA0ADMAYwBlADQAOABmADUAZQA5ADMAYwAwADIAOQA5ADYAYgA1ADQANQBmADQANwAwADMANwA5AGQANgBmADIAMwAzAGEAYQBhADcANAA4AGQANwANAAoAYgBmAGYAZQBjAGUAZgA3ADYANAA4ADAAZgAwADEAOQBkADAAYQBhADMAZgBlADcANQBlAGMAOAAyAGMAMwAxAGEAYQA5AGYANgAyAGUAMAAzADIAOAAwADkAZgA0ADEAYgA3ADQAMwBlADYANgA0AGEAOQAxAGUAZAA5AGEAYwA2AGIAYwA3ADMANQBiADkAMwA2ADIAOQA3ADEAMgA0AGUANQBhADkAYgBlADkAYwA3AGIAMgAxADkANwAyADIANABiADkAOQA4ADEAYQA5ADYAYQAwAGEAMwBlADcAYgAwADQAZgA4ADUAYgAyADEAMAAzADkAOAAyADAAMAAwAGIANAAxADYAMwAzADgAMwA4ADIAYQBiADAAZQA1ADgAMwAxADcAZgBkADYAMABiADQAMgBmADUAZQAzAGQAYwBkADMAZgA3ADEAZgA3AGUAZgBjADEAMwBkADkAMAA3ADUANgA5ADkAYQA3ADIAZQBjAGUAYwBlADIAZQA0ADMAYgBkAGIAYQAwAGQANwAyAA0ACgAwADEANQBjADQAYwBhADAANgBhAGQANQA2AGQAOQA0ADEAOQAyADAAZAA5AGQAOQBhADAAYQBlADcANwBjAGUANAAyADIANgBhADMAYgA4AGMAMQBjADgAYgAyADUAMwBhAGIAZABlADMAOQAxADQAZABmADAAOQBmAGEAMQA2AGMAOABhAGUAOAAyADUANgA3AGIANAA5AGQAYQA0ADYAMwAzAGIAYQA5ADgAOAAwAGEAYQA5ADQANwA4ADkANABiAGEAYwBlADMAOQAwAGIAZAA5ADUANQBkADMAOAAwAGEAYwA5AGYAYQA3ADkANQA5AGQAZQBlADAAMgA3AGQAMABiADYANAAwADIAYQA4ADUAZQA5ADIAMAAwADIAOABkADAAYwBjADkANgBkADYAZAA2ADAANABiADcAMABlADEAZABkADQAMwA1AGMAZQAxADkAYwA4ADUAMQA5AGEAYQBlAGIAMwAwAGIAYwAwADUAYgA4ADMAOQA1ADMAZgBiAGYAYQAzAGYAMgBiAGUADQAKADAANQAzADIAMgAwAGQANAA0AGIANgAyADAANwAxAGEAMQAxAGQANAA0AGMAYQAwAGQAYwBmADUAYQBhAGIAZAA3ADMAMABiADcAMgA5ADQAYQA2ADMAZgA3AGMAZgBhAGQAOQA0AGIAYQBiAGYAZgAyAGIAZABhADMAMQA2ADAAYQBlADYAOQA2ADUAYQAyADUAOQBiAGEANgBkADQAZAA4AGUANgA2ADIANgBjADEANwAzAGQAZgBlADcANgA2ADYANgBiADUAMAAzAGEAZABkAGEAMwBhAGIANwAyADAAZgA3AGEANABlADkAYQA4AGIANgBlADAANQA5AGUAZgBhAGUAYgAwADIAZgA4ADMAYwBjADQAOAAzAGQANgBlADcAYgA4ADAAZQAwADYANgA0ADIANwAxAGIANABjAGUAMQAyAGIAOABlADgANwBhADUANQBmADQAYQA4ADcANgBjAGUAMQAxADYANABiADcAZABjAGUAMAAxAGEANQA4ADMANABlADMAZABkADYAMAANAAoAMgBjAGIAYQA2AGEANgA2ADUAZgAwADIAYgA5ADEANAA1AGEANwA1AGUAMAA1AGMAMAAxADcANgA3ADQAMwA0AGQAMgAwADkAOAAyADkAYgA1ADEANwBjADUAZQA0AGIAYgA1ADcAMwA3ADYAOQAwADIAMwBjADAAMgBhADQAZABiAGIAZQA3ADgAYgAwADAANwAzADAAZgBmAGUANQBjADAAZABkADQAMQA5ADkAYQAwAGUAMQA5ADEAMAA2ADUAMgA0AGYAMwBjAGYAZQAzADYAYwA0ADYAOQA5ADEAOQA4AGQAYQAzADMANQA0AGIAMAA1ADcAZQAzADYANgA0ADkAZQA1ADMANgBkADcAZAA4AGEANQA1ADkAYQA4AGUAMABhADMAMwBiADUAMQBjADEAMQA5AGIAZgBhADUAMABlADUAOABhADQAMgA2AGMAMwBhAGUANABiAGEAZQAwADUAMABjADEAMgA3ADMAOABhAGQAYwAyADAANAA0ADcAZAA1ADcAMwBiAGQAZQBlAA0ACgBjAGQAOAA2ADQAYwAzADYANQAxAGUAZAA4AGEAZQBiADYAYwAxADMAMABkADUAZQBiADUANQA1ADcAMgBlAGQAZgA5AGMAYwAwAGQAZQBlADUAMQA0AGQAOAA1AGUAYwBkADIAYgAxAGQAYgAwAGYAZAAyADMAZQAzADMAYQBiADYAYgAwADAANAA1ADQANwBkADAANwA3ADQAMgBhAGUANgA3ADIANQA1ADAAZABjADMAMQAyADcAOQBmAGQANwBkADAAYQAyADcANQAxAGIAYwBmAGQAZQAzAGYANABmADgANQA1AGMAYwBmAGEAZQBhADMAZABkADgAMwAxADMAMAAwADUAMgBiADMAYgBhAGUANgA2ADgAOAAyADUANQBhADcANwBlADUANABlAGUANwA5ADEANwA2ADQAOQBlAGIANQAxADYAZQBmAGEANgBkAGEAMAAyAGIAMgBjAGUANAA0AGQAMQA4ADAAYwAwADIAYwAwADMAZQBhADMANABmADAAOABjAGEANgA0ADIADQAKAGUANgAwADUAYQAyADEAMQBlAGEANAAwADIAMQA4ADIAMQBhAGEAZAA4ADEAOQA4AGIAZQBkADUAOQBhADQANQBlAGEAYgBmADAAMwA3ADIAMwBkADgAMwA1ADEAZQBmADMAYQAxAGMAMABkADYAOABkAGUAYQAzADkAZQBmADUAMwAzADMANAA3AGQANABkADYAZQA1ADUAZAAwADgAMAA3ADIAMgAzADkANQAxADcANwA0AGIAMwBlADIAZQA4ADMAYQA3ADgAMABjADkAYwAyAGIAMgAxAGQAMwBiADcAYQBhADAAZAA3AGEAMwAzADUANwAxADQAOQBiAGQAOQAyADkAZgBhAGEAOABlADkAOQAwADUAMQAwADYAOQA0ADAAYgAxAGMAMgAyADcAOAA1ADEANAA2AGMAMAAzADUANgA4AGEAMABkADQANQAyAGQANwAzADkAZAA3ADkAMAAxADkAMwA4ADAAYwA0ADYAOQA3ADcAOQAyADIAYwAwADYAYQAxAGQAOABlAGIAMgANAAoAZABjADkANQA4ADAAZAAxADIANQA5ADAANQAxADAANgAzADQAMgA2ADcAZABhADkAMQA0ADEANQA1ADUAYQBiADkAOAAzAGYANwAzADgAMwBhADQANAA4ADUAZABlADcANQBjADQAMwA4AGUANAA0ADUAYgBkADUAMAA3ADcANgBjAGYAZQA1ADcANgAxADMANgBhADQAMABjAGMAZAA2ADYANQA5ADAANQAxADYANgA0ADYANgAyAGQANgA2ADIAMwA1ADEAMwA3ADkAZgA5ADUANgA5ADEAMQAyADAANQA0ADgANQBkAGUAMwA5AGMAOAAxADUAYwA5ADYAMAA1ADcANQA3AGQANwAxADkAZAA2ADEANQAwAGIANAA2AGUAYgA3ADAANgBlAGEAMABjADUAZAAwAGEAMQA5ADYANQAwADIANQAzAGMAYwBhAGMAYQBlADAANQBjADQAYQA4ADIAMAA4AGIAZQAwAGEAOABmADYAYwBlADUAMQAzAGYAOAAwAGMAOAA2ADQAMgA2AA0ACgA5ADUANwA2AGEAMwA4AGMAZAA0ADkAMwAzAGQAYwBlAGUAOAA3ADIAYwA4ADQANQBkADkANQA5AGEAZABkADIANQA3ADEANAAyADgAMwBlADcANwBiADMANQA5AGIANQA3ADcAYQBlADAAMwBjAGUAZQAwADIANABjADUANgA2ADkAZQAxADkAYgBiADcANQBkADgANgA1ADIAMgAzAGUAYgBmADQAYgBiADcANAAxADQANgBiAGMAMwA0AGIAMwA1ADUAYgBkAGYANABkADEAMgBhADYAMAA1ADEAYwBhADcAMwAzADMANAAyAGIANQA3ADUAYQBlAGYAYgA1ADAANQBiADIAOAA2ADcAZgA1AGIAYwAyADgAOQBhAGYAZAA3ADcAYQA0AGUAOQBhADIANQBiADIAMQAxADcAZgAxADgAMgA2AGUAOAA0ADEANwAzADMAOABiADYAYQBiADkAYgA0ADQAZgAzAGEANQA3ADUAMgA2AGQAOQBkADQANwAyADEAYgBiAGIAZABlAGQADQAKAGMAOABhADAAYgBjADQAYQAwAGYAOAAxADUAYwBjADQAYwBiAGEAYQAyADAAMQA0AGQANwA0ADUANABjAGIANABjAGYANQA0ADMAMwA0ADMAYgA1ADcAMwAxAGUAOAAxAGUAYwA2ADAANAA1AGQAYgAyAGIAMwA1ADcAOABhAGYAZAA2ADQAMwAyADEAMgAzADgAMgBlADkAZAA2ADMAZAAzADUANAAzADUAZAA1AGIANwA1AGMAMABhADIAZABhADMAOQBmADcANAAwADIANgAwAGQAYgBiAGYAZAA3ADMAMwA0ADcAMAA1AGQANQBhAGIAZgA1AGEAMABmADgANwA4AGMAYQAyAGQANAA1ADYAMQBmADYAMwBiAGEANwA1ADQAZQBjAGQAMgBhAGQANQBjAGUAYgA5ADAANQA5ADkAMAAxADQANwAzAGQAZQAxAGUAMABkADIAMwBlAGQAYQA0ADUAMwBjADAAYQAzADAANwBhADAAYQBjADgAOAA4ADIAMAAyAGIAMQAzAGIAYwANAAoAYQAzAGYAOAA2AGYAZAA1ADQAZQBlAGQANABmADUANQBiADAAOQBkAGUAOQBlADMAMgA4ADYAMAA5ADYANwBlADUAYgA0ADUAOQAyADcAYgBhADYANgAyADAANgBmADEAYQAzADAAMABhADMAYQA3ADgAMQA3AGMAOAA1ADEANAA0AGMANgA3ADYAMABiAGMANQA3ADYAZABjADgAMgBmAGQAZQA5ADAAZABmAGEAOAAxADQANABjAGUANwAwAGQAZgA5ADgAZAA0AGEAYwAxADcANABkAGUAOQAwADgANQBhADgAMwA0ADUANQBiADAAYgA2AGEAZgA3ADEANwA0ADcAYwBkAGIAZAAyADMAMAA2ADQANgBlAGQAOAAzAGEAYgA1AGQAYQA5AGUAZQA3ADcAYQA5ADcAZAAxAGEAMwA1ADMAZQA5ADkAYQBhAGQAOAA1ADcAYQBhADAAZQBkAGIAOQAyADYANgBiADkAZQBkADEAZQA5ADMANQAzADkAMwBhAGMAOABkADgAMwBlAA0ACgBlAGYAMQA5ADgANwAyADgANQAzADAAYQBhAGYAZQBjAGYANwBjADUAZABiAGYAZAA5AGUAZgAxADYAZABkADUAMQA0AGMAOAA4AGMAYgA0AGUAYwBmADcAYQBlAGQAYgA3ADkAYQBiAGYAMwBmADgAMQAxADQAZAA4ADEAOABjADUAYQBiAGYAZAAyAGQAYwBlAGUAMwAzAGQAOQA3ADEAOQA2AGEANgA0ADEANAA2ADkAOQA5AGYAYwA4ADYAYwBiADcANwBkADYANgBiAGIAYQA0ADMANAAxADUAMwAyADAAZgAxADYAZgBkADEAZQA2AGIAMwBiAGUANwBmAGEAOQBiAGIANwBiADMAOQBhADAAYQAxADkAZQBkADYAZABkADUAMwA5ADkAZgBkAGQAMgBlADIAOQA0AGQAOAA3ADgAYwAzADgAMgAyADUANAAyAGYAYgAwADEAZABmAGIAYQBhAGUAZgA5AGMAMgBmADgAMQA4AGMAYQA4ADAAYwA4ADEAZgBkADQAOABhAGIADQAKADQAMAAzAGEANQAzAGUAOABhADgAMwBlAGUAZQBmADQAOABjAGUAZAA5ADIAZAAyADYANQA5ADAAOQBmADQAMQAwAGEAYQA2ADMAMwA0ADEANwBlAGEAZgBkAGEAOQAwADUAZgBiAGMAMgAxAGIAZgA1ADEAMgA5ADkAOABjAGUAMQBiAGYAMgAwADUAYQAyAGMAMABlADAAOQBiADkANQBjADgAZQBlADQANwA3ADMAYgA1ADYAOABhAGIAZAA2ADMAMwAwADUAZAAzAGIAOQA4ADYAMQBjADMAZAA1AGYAMgBkAGQANQBhADYAZgA4ADEAOQBkADQAOAA0AGMAYwA4ADMAMQAyADgAMAA4AGMAYgAzAGYAYgAzAGIAMAAyAGQAOABmAGEAOQBhADkAMgBkAGYAMgA3ADMAYgBjADgAMAAwADYANQBhAGIANwAxAGUAYwA0ADMAOQBkADEAMAAxAGQAZgBiADYAYgA5ADkAZQA3AGEAZgBhADUAZABhAGUAMQBiAGEAMAAyADgAZQANAAoAZABlADYANQA2ADQAYwBmADkAYgA5ADkAMAAwADQANwBiADcAZAA0ADgANABkAGMAZgAzADIAZAA5ADMAZgBiADkAYgAwAGMAYgA1AGEAMgAyAGYAMwA0ADMAOABlAGQANQAxAGIAZgBiAGMANAA0ADAANABjAGMAMAA1AGYANAA0AGUAYwA4AGYANQBmADMANAA1ADMAZgBhADYAZQA3ADcAZABiADIAMQA5AGEAOQA2ADgANwA2AGMAYwA5AGIAOQAwADcAYgAwAGYAMwA3ADUAYQAyAGYAMQA0ADEAZAA3AGQAMQAyADEAMAA5ADUANwA2AGUAOQAzADMAMQBhADEAOABmADgAMABhAGMAOABlAGUAOQBlAGUAYQA2AGYANAAxADQANAAyADcANwBkAGIAZABmAGIANQBmAGYAYQA1ADcAZgBkADIAOAAxADMAYwBmADkANgA1ADIANgBiADcAMgBjAGYAMwA3ADQAYwAyAGEANQA4ADQANQBkADEAMAA4ADcANQA4ADAAOQA5AA0ACgAyADUAOQA5AGYAYgA1AGYAMAAxADkAOQBjAGYANQA0ADUAYgA1AGMAMABmADYANgBkADIAYQA2ADYAYQA1ADcAMABjADYAOABmADUANwBlAGIANQAxADgAMABjAGUAYQA3AGEANgA3ADkANwBmADUAOABlADQAYQA0ADEAZQBlAGYAOQBlADIAYwAxAGEANQAwAGYAOAAyAGEAMgBkAGEANgAzADAANwBiADgAZQA3AGIAZQA1ADcANAAwADgAZQA5AGUANQA5AGQAZAAyAGYAMQBhADEANAA5ADgAZgA3ADYAYwBhAGQAZAAxADUAMQBlAGEANQA3ADYAZQA2ADUANABlADkANAA4ADIAZABjADcAYgA2ADMANQA1ADAAYwA0ADQAMAAxADUAMwAyAGYAZABlADAAMwA5ADgANQA5AGYAMgA0ADEAOQBjAGYAOQBhAGEAYgA2AGMAZQAyAGUAMAAzAGIAOQA5ADQAOABkADQANwA5AGYAOQBiADMAZQA1AGQAZgBhADgAZQA4AGEADQAKAGIAOABkAGEAYgA0AGMAZAAyADgAMAA1AGIAOQAzADcAOAA1AGIAOAA3ADUANAAyADAANQA0ADAAMAA1ADMANwAxADMAMgA4ADMAMgAwADYAZQA5ADMAZgAxAGEAYwA5AGUAYQAzAGEANgA3ADAANwAzADkAYQBhADQAOQA0ADYAMwAzADEAMABkADcAMgA5AGMAOABkADEAYgBkADkANAA3ADkAZgBmADgAYwA1ADIAOQAwADUAMQA0AGYAMwAxADgAMAA1ADUAZgAwAGUAYgBkADkAYQBjADUAMgA1AGUAMgA2ADQAMABkADkAOQA3ADUAMwBkADcAMwBiADMAYgBjADgAOAA4ADIAYwBhADEAYQBlAGMAMQBhAGUAYQA4ADgAYQBkAGUAYwAzAGQAZAAyAGIAMwAzAGIAOAA4AGYAYwBlAGEANAA2AGEAOQA0ADgANgBkAGMAOQBiAGIAMgA3ADkANgAwAGEANQBmADIAMgAyAGMAMABhAGEAMQBmADkAMgA5ADcAYQBmAGYAYgANAAoAMwA5ADkAYQA0ADEAOQAxADcAZAAzADEAYQA0AGYAYQA3ADAAOABlADIAMAAwADMAMwAxADQAYQBhADMAMABlAGIANAAyAGEAMwA0AGQAZAAyAGMAYQBlADIANwA0ADAAYwBiAGQAOQA1ADQAOABkAGQAMgA5ADAAMQAxADAAZgBhADgANgBlAGUAOABhAGMAOAAwAGYAMAA4ADIANgBhADMANgBiADIAYgBlAGEAOQAzAGUAOABhAGQAZABhADAANAAxAGQANAAwADAAYQBhAGMAYQA1ADQAZgBkADMAOAA0ADcAOQAwADEAMQBhADkAMwA0ADcAYQA3AGYAMAA3ADkAYQBlAGIAOABlADAAMwBjADQANQA1AGMAMwBiAGQAYgAzAGQAOABmADUAYQAzAGQANAAwADUAZgA5ADQAMwA5ADAAYgA2ADkANABkAGQAZABmAGEAYQBhAGYAMABiADkANgAwADIANQBlAGYANQA4ADEAZABkADAAYgAwADEAYgA3ADEANAA0ADYAMgBhAA0ACgBmADUAZAA3AGYAZAA0ADQAYQBlADIAMQAwADMAYQA3ADIAZQAyADAANQBiADAAMwA5ADEANwA3ADUAMAA2AGIAMwA0AGUAMgAxAGQAOAA4ADkAZgA1ADIAZQBmADUAYQBjAGMANwBkAGQANAA4ADAANwAyAGUAYQA4ADIAZABjADkAYgA1ADIAYgAwAGEAYQBiADQANgBiADQANQBlAGIAYgBkADAAMgBjAGMAMABiAGQANgAwADMANgBlADMANgA2ADQAOQBlADkAYgBlADIAYQBlADAAZQAyADYAYwBmAGEAMwBhAGUAMwBmADMAYQA1AGIAMwAzADEANAA5ADUAOAAxADkAYQBiADUAMQBiADIAYwA0AGUANQBkADkAMAA1ADEANgBmADUAYQA2ADkAMQBkAGIAYgA0ADUAYgAzADQAMwBiAGQANABjADkAZABmAGUAOABhAGEAZgA4ADAAYwBjAGUANwAyAGEAMQBiADYANQA0ADAAZgAzADMAYwA2AGUANQA2ADEAZgBkADUADQAKAGMAYQAwAGUAYwBhADMAZAA3ADUAMAA5AGUAYQA4ADYAMwBjADMAMgA5AGIAYQAzADkAMQBlADcAOABlADAAMwA1ADUANwAwADAAOQA5AGEANABiAGUAYgA1ADcANAAxAGMANgBhAGEAMQBlADAAMAA0AGUAYgA0AGMANAAxADQAZgAzADEAZQAwAGUANABhADYAYgA5ADkANQAyADgAZQA2AGEAMQAzAGEANwA2AGUAYwA4AGEAOAA3ADcAMwA2ADYAMwA5ADcAYgA2AGQANQA0ADgANQA2ADYAOQAzADIAMAAyADgAYwBhAGYAOAA0ADgAYwA1ADUANwAwADUAZAA1ADYAMwA5AGQAYQBkADUAMgA1ADIAOAA1AGEAYQA2ADkAYwA3AGIANgA3ADMAMQAxAGEAOAAyADMAYwAzADIAOQBiAGEAMwA2ADIAYQAxADQAZQA3AGYAZgA1ADgAMABlADAANwBlAGEAZAAxADEANwBmADMANQA2ADQAMABjAGUAOABmAGEAMQBkAGYAOAANAAoANgBmADMAMgA1ADUAZABkADEANgBiAGIAOABhADEAYgBhADkAZQBkADUANQBjAGIAZgA1ADMAMwA2ADYAMwA1ADAANAAxADkAYgA5ADEANwA4AGIAYwBjADQAYgAzAGIAMQA1AGQAMABmADUAYwA4ADIANwA0ADgAYQBkAGQAOQBjADIAOQBmAGEAYgBmADUANABmAGIANQA3ADUAYwBlADQAMABjADYAZQBlADUAZQBiADQAMwBmADIAZQAzAGQAMQAxADYAMABkADcANwA3AGUANAA2ADgAOQAyAGIANAAzADQAMABjADkAOQAxAGIAZgA2AGEAZQAyADcAMwA4ADUAYQA1ADMAMAAwADUAZABhADcAYQAzADAAZgA4AGQAYwAxAGMANAA5AGYAMwBiAGEAOQBmADYAYwBlADUAOQBjADgAOQA4AGYANwA1ADYAMQA1ADMANAAzADEAYQAxADEAZgA5AGUAYwA5ADAAMQA2ADkAMgBkADMAYgBjAGUAYwA0ADYANgA1ADQAYwAzAA0ACgA5ADAAZAAxADQAOAA2ADUAOAA4AGIAMwBjADUANAAzADYAYgBjADQAYgA3ADUAZQA1AGMANQBkAGUAMwA1AGMANAAzAGMAZQAyAGUAMQAxADMAZAA2AGIAMgA0AGUAMAA1AGIANQA5ADQAOQA1ADkAMgBkADQANQAzAGQAMwBhADAANQAxADkAOABkADEANAAwAGYAMwA4ADAAMwBkAGEANQA1AGQAZQAzADgAMwAzAGIAMgBkADUANwA1AGMAZQA2AGEAYgBkAGMAYgBjAGUAMwBhAGEAZQA2AGQAYQA1AGQAMgA1ADEAYwAwAGQAYwBiAGYANgA3ADIAMAAyADkAOQBkADgANgBjAGMAYwAzADgAZgBhADQAMQBmAGQAYwAwADIAZQBkADUAMgA3ADUAOQA0AGEAMgA4AGYANQAyAGQANwAzAGEAMgBiAGMAOAAyADgAMAAzADEAYQA3ADgAMQAxADgAOAA1ADEAYwAwAGIAOABmADcANgAwADQANQBlADkAMwA0ADYANAAzADQADQAKADkAYQBiADYANwAxADAAYgBiADQAMgBhADYAOABiADIAMwBhAGQAZQBhADcANgA1ADAANwAxADkAMAAxADUAMAA0ADEAMAAyADcAZQA3ADQAMQBkADYAMgA5ADAANAA0ADEAOQAyADkANwAyAGIANABmAGQAZQBhAGQAMQAxADQAYwA4ADgAOABkADkAYQA1ADEAZQAzADQANgAzADAAMgBkADgANABhADcANwAwADQAOQAzAGEAMAAwADIAMwBkADIAYgA3ADUAMgBmAGUANwAxADYAMgBjADQANAA5AGIAZAAyADkAZQBjADEAZAA5ADQAYQBhADMAMwBjAGUAYgA2ADgAOQA2ADUAMwA2ADcAMAA1AGEAMwA5AGEAMAA2ADEAOQA1ADEAMgAwAGEAOAAwADcAYwBlAGIAOAAxADcANgAwADQANgBlAGEAMwBlAGMAZQAxADkAYwA4ADAAOABiADAAOQA5ADMANQA3ADIANgA0ADEAZgA1AGMANABjADIAYwBkADQAMwA2ADYAZAANAAoANQA0ADUAMwAyADEAOQBmADUAOQA3AGIAOABhAGIAMwBjADEAYwBlADQAOABmADUAZQBmADMAYwBlAGIAYgBlAGMANABlADAAYwBjADYAMABjADcAMgBjADcAZgAzADMAMwA1ADEANQAzADIANgAyADkANAA4AGYAYQA2AGEAOAA2ADIAMAA2AGMAYQA4AGMAOQAxAGEAYwBmAGEANwA2ADkAZQAwADEAOQA5AGQAOQA3AGIAZgA2AGQAZABjAGYAZQBjADgANwA5AGQAYQA2ADQAMwA0ADYAZAA5AGEAZAA0ADcAYwBiAGEAYwA3AGIANgA3AGQANgAyADUAZAA1AGEANwBmADMAMQA5AGMAOAAyAGMAMwAzADYANwA2ADcAMgBmADkAZQA1ADEANAA5ADIAYgA1AGQAMAAyADEAOQBjAGQAMAAyADQAZAAxAGYAMAAwADEAOAA4ADEAYQBkAGYAYQA3ADMAMQBlADgAMQA0AGMAZAA2ADYAMgAyADAAYQBhAGYAZQA3AGEAZABkAA0ACgBkAGEANgA1ADkAYwBkADEANgA1ADkAMABkADEAMgBjAGQAMAA5ADgANwBlAGEAOABlADAAMwAzADQANQA0AGYAOQAxAGUAYQBjADcAYgA5ADAANwAzADIAMwAzADcANwBmADQAMQAwADQAOABmADkAOABhADEANAA3AGQAZAA0AGEANQA5ADAAMQAxAGEAMAA0ADcAZgA3ADgAOQBjAGUAMAA0AGYAOAA4AGUAMQAzAGEAZgBhADMAMQA4ADUAYwBhADQAZAAzAGQAOQBlAGYANwAyADMANQA2ADAANwA0ADMAOQA2ADQAMwA0AGEAMwBlAGEANQA2ADYANgA3ADYAOQAzAGUANgAwADgAOQA0ADQAYQBlADcAZQBhADEAYQA2ADcAMAA1ADkAOQAwADEAMABhAGQAOABhAGIAOQBlADcAZAA3ADYAMQA1AGUAZAA3ADQAMABiAGUANABhADIANQA5AGUAYgA5ADcAMwAzADMAMABiADgAMAA3ADYAMAA0ADgAYQA5AGEAYQA4AGQADQAKADcAMwAxADkAMgBjAGMAMABhADYAOAA4ADkAYQBiADUAYwBjADIAOABjAGYAZABhADMAZAA2ADQANwA1ADIAYgA2ADQANAA0ADIAMABhAGYAMABjAGUAMABiADMAOQBiAGEANQBlADYAYwBjADgAZQA2ADEANAA0AGIANwA0ADMANAA2ADgAYwBlADIAMgBiADUAMgBlADAAMwAzADkAYgA4ADEANwBkAGMANwBmAGEAYQBiAGYANAAxADAAYwA4ADQANQBhADQANAA2ADEANQA5ADAAZgA3ADYANgBkADIANwBmAGMAZgBhAGUANgAwAGIANgAxAGUAMABhADEAOQBmADEAZgAyADMAMwAwAGUAMQAyADkAZQBkADEANQA0AGUAMgA3ADcAMQA1ADUANwA5ADEAMQBlADAAZQBiADkAOAA4ADYAMABjAGMAZABlADkAZQAzAGMAYwBhAGEANAA2ADYAYgAyAGQANABkAGQANgBiAGEAZgBkADMAZAAzADQAMAAyAGUANgAyAGQAZAANAAoANwBhAGEAYgBiADAAOQBmADAAZAA2AGUAZAAxAGQAMwA0ADEAMgBlADAAMgBmADYANQBiADIAOQBjAGUAOQBlADEANQA2AGUAZAAxAGQAMwA0ADIAMgBlAGEAMgAxADIANgA3ADAAZgBmAGIAOABjAGQAYgBhAGUAZQBjAGMAOQBkAGIAYQAzAGYANQBmADQAOQAwADgAZgA2ADIAZABkADcAZQAzADQANwAwADgAYQA0ADQAMABlADUAYgAxAGUANQA5ADIAZABmADcAZQBhADQAZAA0ADEAMwBlADgAYQAxADMAYQBkADcAMgAzAGEAYQA1ADYAMABjAGMAMwAyADQAYgBjADYAOAA3ADQAZgAzAGYAZgBiADMAOABjADAAOQBlADMANQAxAGQAYgA3AGYANAA2ADYAMgAxAGQANwAyADIAYQBkADAAMwAwADIAZgAwAGEANAA1ADEAZQAwADYANwAwAGIAMwA4ADMAMgAwADMAZQBkADMAMQBkADcAOQAzADgAMgA2ADcAZgBmAA0ACgAxADQAZQA5ADkAMQA3AGEAMwA3ADkAMABiADcAYgBjADMANgBlADQAMAA1AGIANAAyADEAMgBmAGEAMAAwAGQANwA5ADAAMQA2AGQAYwA4ADAAYgA2ADgANAAzADUAZQA0ADAAMQBiAGYAMgAwADIAZABhADkAMAAxADcAZAAwADgANgBiAGMAOAAwADEAZQAwADIAOQA5AGUAMwA0ADEANABlADkANQAzADgAOAA3AGEAZQA0AGYAYQA2AGYAOAA3ADcAMwBlADIAYgAzAGYAYwA4AGUAYgAzAGQAMgAzAGEANgA2AGYANABlAGEAYgA2AGEAYwBmAGYAYwBlADEAMQBjADcAZABhADkANwBiADkAYwBmADEAOQA1ADQANwBhADYAYgA3ADQAMgAwADYAMQA4AGYAMAA4AGUANAA3ADgAYQAxADkAMAAzADMAZAAwAGIAOAA5ADgAMABiADkAMwBlADYANgA4ADkAYgBlAGQANAAzAGQAYwBlADkAOABlADcAYgBlADQAYQBiADcADQAKADQAMQBlADYANQBjAGYAOQBlAGMAYgA3ADQANwBjAGMAZQBjADkANgAzADYAZQA0AGQANwBiAGEAMAA1AGIAMgAwAGIAZgBjADgAOABmADkAMAAyADIAMQBkADIAOAA2AGYAYwA1AGEAOQA3ADQAMwA2ADYAYQBkADkAOQBmAGQAZgBkADYAZgAxADQAOQAwADAAZABmADkAYgA1ADIAZQA4ADcAYwBjAGMAYwA1ADMAMgBmADUANQBjAGMAZgA3AGIANQBiADQAMwA5AGIAYQBmADUAYgAzADkAZgAwADgAZAA4ADgANgBmAGMANQBhADkANwA0ADMANwA2AGQAZgBlADkAMwAyAGIAYgBhADMANgAyADgAYQBlAGEANQBiADUAZAA1ADcAZQBjAGEAZQA3AGQAMgA0ADYANAAwADYAZQA4ADMAMwBlAGEANQAyAGMAOABhADQANgBhADEANQAwAGMAOQBjADIAOQBhADIAMAA4ADkAYQBiAGEAMQA2AGIAYgBlAGIAMwA3AGUANAANAAoAZAA3AGIAYQAxADQAYgAyADAAYgAzADgAYwBlAGUAYwA3AGYAYQAzADQAMQBlADIAMAAyAGIAYQAyADEAYgBmAGQANgBhADUAOQAwADAAMQBhADkAOAAyADgAMQBkADkAMgBmADYANwBjADQAZQBmAGEAYgAwADgANgBhADYAZABmADcAMgBiAGMAOQA1AGUAYwA4AGEAZABjADIAOQAwAGYAYgBkADcAYQAyADIAZgBkADUANwA2ADQAOQBjADgANAA4ADAANQBhADMAMQA4AGQAMABiADMANwBmAGYANQBkADgAMAAzADEAOQBjADAANQAxADkAMQBlADcAMAA2AGUAMgA4ADYANQBjADIAOQBmADMAYgBmADUAZAAyADgAMQA1ADMANgA4ADAAYwBlAGEAYQAwADcAYgAyADgAMwA4ADUAYQAzADQAYwBiADMAMgAxADUANwA3ADIANAAxADgAZgBjAGMAYwAwADEAOABmAGQANgBkADcAMwAxADYANwAyADcANABiAGMAZABhAA0ACgA1AGEANABhADMANgA2ADQAYQAxAGMAYwA2AGMANwA2ADYANgA5ADYAYgAzAGYAZQA5ADIANQBhADMAMwBjAGEANAAwADYANgA5AGQANQA1ADYAZAAzADAAZgA3ADYAYgBkAGQAMgBiAGMAYQAwADAAYgBkADkAZQA5ADEAYgBkADUAYQBiAGEAMAA1ADcAMgA2AGIAZQBkAGMAYgA5ADgAZQAyADIAOAAzADMANQAzADUAYQA5ADAAYQAzAGYAZAA3ADcAMAA2ADMAMABkAGEAOQAwADgAZAAwADgANQBlADMANAA4ADMAYgAyADYAZQA4ADEAOAA4ADIAMABmADMAMgA1ADgAOQBmAGEAMwAzADkAYwAwADUAOABjADMANgBlADQAOAA2AGMAYQBkADcAOABkADYANwBjAGUAYgAzADAAMQBlADIAZQA0ADIAMAA3ADMAZgAyAGUANgBlAGUAZAA5ADAAMwAxADgANgBkAGMAOAA0ADkAMQAxAGQANABmADIAMQA3AGQAOABiADIADQAKADcAZgA5AGQAZQA1ADYAOAA5ADcAYgBhADEAZABlADQAYwA4ADYANAA5ADgAMQBlADYAZABjADgAOAAzADYAMgA4ADYANQAzADUAMQA1ADMAYQA0ADYANQA2ADYAMwA5ADYAZAA5ADQANAA2ADIAMABlADMAOQBlADUAZgA4AGUAMwA4AGMAOAAwAGMANQA4AGUAZQBkAGYAZQAzADkAZQAwAGMAMwAyAGEAYQBhADcAOAAxADUAYwA4AGIANQA5AGQAZQA5AGEAMwAxADAANABhADkAMQA2ADkAZgBhADkAYgA2ADIAZAA3ADMAYQBmAGEAYwBkAGMANwAzADIAZABiAGQAOAA1ADMAYQBmAGUAMgA2AGEAYQAzADcAMQAwAGQAMQBmADYANABiADcAZAA0ADkAMwAxADAAYQAxADkAMwAzAGIAMAAzADIAZABhADkAMAA1AGYAMQA0ADAANQBiAGIAZQA3ADkAMAA4ADMAYgA2AGEAYQAwAGYAYQBjADgAMgA5AGEAOAAxAGUAYwANAAoAMgAwADUAMQAxAGIANgA0AGQAMgBlADcAOAA2AGYAYwBhADIANQBlADMAOAA5ADEANQBjADYAMQAzADYAMAAyAGIAOQAxAGMAYQBjAGIAOAA3ADUAMwBmAGYAMwA2AGMAMQBiAGYAMgA0ADEAMgBlADkAMAA3AGMAOQBlADIAZAAzADgAYQAyAGMAMQBkADIAOQBiAGEAZQA4AGYAMQAwAGIAOAA1ADYAYgA1AGUAMQBkADkANQBhADkAOQA2ADYANAAzADMAZQBlADgAYwBjAGYAOQA3ADAAOQAxADAAYgAyADgAMAA2ADYAOAAyAGQAMAA3ADUAOQBlAGQAYQBkADUAZAA4ADYANgA4ADMAZABkAGIAOAA2ADcAYwA1ADAAMgBiADcANQAxADIAMgBjADAANQAwAGEAZgAxADMAOQA2ADAAZAA0ADcANQBiADgANwA3ADAAYgBjADUAYgBkADYAYQA0ADUAMgA3ADYAMABlAGUAYgA5AGQAMAA4ADYANQBjADIAOQA5AGEAOAA5AA0ACgBjADUAMAAwAGEAMwA1AGQAYgAxADQAYgBmADMANAA3AGIAYgA4ADAAZgA2ADQAMAA0ADYAZQBlAGYAOQBhADIANQAzADMANQA3ADcAYwBkAGIAMgA5ADAANQA5AGQAZgAzADIAZAAwADcAYQAxAGMANQA1AGMAMQBiAGQAOQAwADUAZAA3AGIAZQBjADcAZQA3AGQAYgAyADIAMQAwAGIAYgAxADQAZgA5AGUAMAA1ADkAYQA3AGUAYQAyAGQAMwBhADkANQBlAGMAOABjADgAZAA1ADAAZQBkAGMANABiADAAZABhADYAMABkAGQAOQAwADgAMwAwAGQAMQAxAGEAOQBiADMAMQBjADEANgBkADUANQBiAGUAMgAzADkAMABhADMAMABhADUAZQA5AGQANgBiADYAZgBjADgAMABkADkAMQAwADIANwBiAGIAZgA5ADAANgAwADcAMABiADgAZAA0ADUAOQA2AGIAMAA0ADMAMgAwADIAOQAwAGIAYQAwAGUAZAA3ADAAMwA2AGIADQAKADQAMwA0AGUAOABhAGMAMAAwADEAOABlAGMAMAAxADAAYgA0AGEAMwA0ADkAOQBmADcAYwA0AGUAZgA1ADkAYgBkAGQANABmADEANwBkADEAMQBlAGQAMABiADUANQBiADUAZgA0ADAAYgA4AGUAYgA3ADAAMABkAGYAOQA3ADgANABjADEAYgBiADUANwBiADEANgAzAGQAMABjAGYAMgBkADYANwBkAGQAYQA5ADAAMQA3AGQAMAA4ADYAYgBjADgAMAAzADYAZQA0ADAANQBiADQAMgAxADIAZgBhADAAMABkADcAOQAwADEANgBkAGMAOAAwAGIANgA4ADQAMwA1AGUANAAwADEAYgBmADIAMAAyAGQAYQA5ADAAMQA3AGQAMAA4ADYAYgBjADgAMAAzADYAZQA0ADAANQBiADQAMgAxADIAZgBhADAAMABkADcAOQAwADEANgBkAGMAOAAwAGIANgA4ADQAMwA1AGUANAAwADEAYgBmADIAMAAyAGQAYQA5ADAAMQA3AGQAMAANAAoAOAA2AGIAYwA4ADAAMwA2AGUANAAwADUAYgA0ADIAMQAyAGYAYQAwADAAZAA3ADkAMAAxADYAZABjADgAMABiADYAOAA0ADMANQBlADQAMAAxAGIAZgAyADAAMgBkAGEAOQAwADEANwBkADAAOAA2AGIAYwA4ADAAMwA2AGUANAAwADUAYgA0ADIAMQAyAGYAYQAwADAAZAA3ADkAMAAxADYAZABjADgAMABiADYAOAA0ADMANwBlAGYANwBmAGEAZgAyAGMAYgBmAGYAMAAyADEAZQBkAGEAZgBiAGYAMQAzADUANQA0ADUANgA3AGEAMAAwADAAMAAwADAAMAAwADQAOQA0ADUANABlADQANABhAGUANAAyADYAMAA4ADIAfQB9AH0AfQB9AHsAXABiAFwAdQBsAFwAZgAyAFwAZgBzADMAMgBcAGMAZgAzACAAUwBvAHoAaQBhAGwAZABpAGUAbgBzAHQAIABrAGEAdABoAG8AbABpAHMAYwBoAGUAcgAgAEYAcgBhAHUAZQBuACAAZQAuAFYALgAgAEwAZQB2AGUAcgBrAHUAcwBlAG4AXAB0AGEAYgAgAH0AewBcAGYAMgBcAGYAcwAyADQAXABjAGYANAAgAGkAbgAgAH0AXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABzADEAXABxAGwAXAB0AHEAYwBcAHQAeAA0ADUAMwA2AFwAdABxAHIAXAB0AHgAOQAwADcAMgBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMwAyAFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABzADIAXABxAGwAXAB0AHgAMgA4ADQAXAB0AHgAMQAxADMANABcAHQAeAAyADgAMwA1AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGkAXABmADIAXABmAHMAMQA2AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABoAHkAcABoAHAAYQByADAAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAaAB5AHAAaABwAGEAcgAwAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAYgBcAGYAMgBcAGYAcwAzADIAXABjAGYAMQAgAEIAZQB0AHIAZQB1AHUAbgBnAHMAdgBlAHIAdAByAGEAZwAgAH0AXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAaAB5AHAAaABwAGEAcgAwAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAOABcAGMAZgAxACAAZgBcAHUAMgA1ADIAXAAnAGYAYwByACAAZABhAHMAIAB9AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGgAeQBwAGgAcABhAHIAMAB7AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADgAXABjAGYAMQAgAEIAZQB0AHIAZQB1AHQAZQAgAFcAbwBoAG4AZQBuACAAaQBuACAAZABlAHIAIABFAGkAbgBnAGwAaQBlAGQAZQByAHUAbgBnAHMAaABpAGwAZgBlAH0AXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAaAB5AHAAaABwAGEAcgAwAFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGgAeQBwAGgAcABhAHIAMABcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABoAHkAcABoAHAAYQByADAAewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIABaAHcAaQBzAGMAaABlAG4AIABkAGUAbQAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAdQBsAGQAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIABTAG8AegBpAGEAbABkAGkAZQBuAHMAdAAgAGsAYQB0AGgAbwBsAGkAcwBjAGgAZQByACAARgByAGEAdQBlAG4AIABlAC4AVgAuACAATABlAHYAZQByAGsAdQBzAGUAbgB9AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGYAaQAtADUAOAAxADIAXABsAGkANQA4ADEAMgBcAGwAaQBuADUAOAAxADIAXABoAHkAcABoAHAAYQByADAAewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMQA2AFwAYwBmADEAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACgATABlAGkAcwB0AHUAbgBnAHMAZQByAGIAcgBpAG4AZwBlAHIAKQB9AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGgAeQBwAGgAcABhAHIAMABcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgAyAFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABoAHkAcABoAHAAYQByADAAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAaAB5AHAAaABwAGEAcgAwAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAAbQBpAHQAIABTAGkAdAB6ACAAaQBuACAAIAAgACAAIAAgACAAIAAgACAAIABcAHQAYQBiACAAXAB0AGEAYgAgAFwAdABhAGIAIABcAHQAYQBiACAAfQB7AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAHUAbABkAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAANQAxADMANwA5ACAATABlAHYAZQByAGsAdQBzAGUAbgAsACAARABcAHUAMgA1ADIAXAAnAGYAYwBzAHMAZQBsAGQAbwByAGYAZQByACAAUwB0AHIAYQBcAHUAMgAyADMAXAAnAGQAZgBlACAAMgB9AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAHIAaQA1ADYANwBcAHIAaQBuADUANgA3AFwAaAB5AHAAaABwAGEAcgAwAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAdQBsAGQAYQBzAGgAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIABcAGwAaQBuAGUAIAB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAAdgBlAHIAdAByAGUAdABlAG4AIABkAHUAcgBjAGgAIAAgAFwAdABhAGIAIABcAHQAYQBiACAAXAB0AGEAYgAgAFwAdABhAGIAIAAgACAAfQB7AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAHUAbABkAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAARwBlAHMAYwBoAFwAdQAyADIAOABcACcAZQA0AGYAdABzAGYAXAB1ADIANQAyAFwAJwBmAGMAaAByAGUAcgBpAG4AIABLAGkAcgBzAHQAZQBuACAARwBlAHIAbwBuAGUAaQB0AC0ASgBlAHAAcAB9AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGgAeQBwAGgAcABhAHIAMABcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXAB1AGwAZABcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGgAeQBwAGgAcABhAHIAMAB7AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgAHUAbgBkACAAfQBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABoAHkAcABoAHAAYQByADAAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAaAB5AHAAaABwAGEAcgAwAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAASABlAHIAcgBuAC8ARgByAGEAdQAgAH0AewBcACoAXABiAGsAbQBrAHMAdABhAHIAdAAgAFAAVgBvAHIAbgBhAG0AZQB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAAXAB0AGEAYgAgAFwAdABhAGIAIABcAHQAYQBiACAAXAB0AGEAYgAgAFwAdABhAGIAIABcAHQAYQBiACAAXAB0AGEAYgAgAFwAdABhAGIAIAB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAdQBsAGQAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIABQAFYAbwByAG4AYQBtAGUAfQB7AFwAKgBcAGIAawBtAGsAZQBuAGQAIABQAFYAbwByAG4AYQBtAGUAfQB7AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAHUAbABkAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAAIAB9AHsAXAAqAFwAYgBrAG0AawBzAHQAYQByAHQAIABQAE4AQQBtAGUAfQB7AFwAKgBcAGIAawBtAGsAZQBuAGQAIABQAE4AQQBtAGUAfQB7AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAHUAbABkAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAAUABOAEEAbQBlAH0AXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAaAB5AHAAaABwAGEAcgAwAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxACAAXAB0AGEAYgAgAFwAdABhAGIAIABcAHQAYQBiACAAXAB0AGEAYgAgACAAIABcAHQAYQBiACAAXAB0AGEAYgAgAFwAdABhAGIAIAB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADEANgBcAGMAZgAxACAAKABuAGEAYwBoAGYAbwBsAGcAZQBuAGQAIABsAGUAaQBzAHQAdQBuAGcAcwBiAGUAcgBlAGMAaAB0AGkAZwB0AGUAIABQAGUAcgBzAG8AbgAgAGcAZQBuAGEAbgBuAHQAKQB9AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGgAeQBwAGgAcABhAHIAMABcAHMAYQAxADIAMABcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABoAHkAcABoAHAAYQByADAAewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIAB3AG8AaABuAGgAYQBmAHQAIABpAG4AIAB9AHsAXAAqAFwAYgBrAG0AawBzAHQAYQByAHQAIABQAFMAdAByAGEAXAB1ADIAMgAzAFwAJwBkAGYAZQB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAAXAB0AGEAYgAgAFwAdABhAGIAIABcAHQAYQBiACAAXAB0AGEAYgAgAFwAdABhAGIAIABcAHQAYQBiACAAXAB0AGEAYgAgAFwAdABhAGIAIAB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAdQBsAGQAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIABQAFMAdAByAGEAXAB1ADIAMgAzAFwAJwBkAGYAZQB9AHsAXAAqAFwAYgBrAG0AawBlAG4AZAAgAFAAUwB0AHIAYQBcAHUAMgAyADMAXAAnAGQAZgBlAH0AewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXAB1AGwAZABcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgACwAIAB9AHsAXAAqAFwAYgBrAG0AawBzAHQAYQByAHQAIABQAFAATABaAE8AcgB0AH0AewBcACoAXABiAGsAbQBrAGUAbgBkACAAUABQAEwAWgBPAHIAdAB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAdQBsAGQAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIABQAFAATABaAE8AcgB0AH0AXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAaAB5AHAAaABwAGEAcgAwAFwAcwBhADEAMgAwAFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGgAeQBwAGgAcABhAHIAMAB7AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgAGcAZwBmAC4AIAB2AGUAcgB0AHIAZQB0AGUAbgAgAGQAdQByAGMAaAAgAFwAdQA4ADIAMwAwAFwAJwA4ADUAXAB1ADgAMgAzADAAXAAnADgANQBcAHUAOAAyADMAMABcACcAOAA1AFwAdQA4ADIAMwAwAFwAJwA4ADUAXAB1ADgAMgAzADAAXAAnADgANQBcAHUAOAAyADMAMABcACcAOAA1AFwAdQA4ADIAMwAwAFwAJwA4ADUAXAB1ADgAMgAzADAAXAAnADgANQBcAHUAOAAyADMAMABcACcAOAA1AFwAdQA4ADIAMwAwAFwAJwA4ADUAXAB1ADgAMgAzADAAXAAnADgANQBcAHUAOAAyADMAMABcACcAOAA1AFwAdQA4ADIAMwAwAFwAJwA4ADUAXAB1ADgAMgAzADAAXAAnADgANQBcAHUAOAAyADMAMABcACcAOAA1AFwAdQA4ADIAMwAwAFwAJwA4ADUAXAB1ADgAMgAzADAAXAAnADgANQBcAHUAOAAyADMAMABcACcAOAA1AFwAdQA4ADIAMwAwAFwAJwA4ADUAXAB1ADgAMgAzADAAXAAnADgANQBcAHUAOAAyADMAMABcACcAOAA1AFwAdQA4ADIAMwAwAFwAJwA4ADUAXAB1ADgAMgAzADAAXAAnADgANQBcAHUAOAAyADMAMABcACcAOAA1AFwAdQA4ADIAMwAwAFwAJwA4ADUAXAB1ADgAMgAzADAAXAAnADgANQBcAHUAOAAyADMAMABcACcAOAA1AFwAdQA4ADIAMwAwAFwAJwA4ADUALgAuAH0AXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAaAB5AHAAaABwAGEAcgAwAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxACAAXAB0AGEAYgAgAFwAdABhAGIAIAAgACAAIAAgACAAIAAgACAAIABcAHQAYQBiACAAXAB0AGEAYgAgAFwAdABhAGIAIABcAHQAYQBiACAAXAB0AGEAYgAgAFwAdABhAGIAIAAgACAAIAAgACAAfQB7AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgACgAdgBlAHIAdAByAGUAdAB1AG4AZwBzAGIAZQByAGUAYwBoAHQAaQBnAHQAZQAgAFAAZQByAHMAbwBuACkAfQBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABoAHkAcABoAHAAYQByADAAXABzAGEAMQAyADAAewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgA0AFwAYwBmADEAIABcAHQAYQBiACAAXAB0AGEAYgAgAFwAdABhAGIAIABcAHQAYQBiACAAfQBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABoAHkAcABoAHAAYQByADAAewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIAB3AGkAcgBkACAAbQBpAHQAIABXAGkAcgBrAHUAbgBnACAAdgBvAG0AIAB9AHsAXAAqAFwAYgBrAG0AawBzAHQAYQByAHQAIABQAEgAQgBlAGcAaQBuAG4AMQB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAAUABIAEIAZQBnAGkAbgBuADEAfQB7AFwAKgBcAGIAawBtAGsAZQBuAGQAIABQAEgAQgBlAGcAaQBuAG4AMQB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAAIABmAG8AbABnAGUAbgBkAGUAcgAgAFYAZQByAHQAcgBhAGcAIABnAGUAcwBjAGgAbABvAHMAcwBlAG4AOgB9AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGgAeQBwAGgAcABhAHIAMABcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABoAHkAcABoAHAAYQByADAAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBjAFwAaAB5AHAAaABwAGEAcgAwAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAYgBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQAgAFwAdQAxADYANwBcACcAYQA3ACAAMQAgAFYAZQByAHQAcgBhAGcAcwBnAGUAZwBlAG4AcwB0AGEAbgBkACAAdQBuAGQAIABaAGkAZQBsACAAZABlAHIAIABMAGUAaQBzAHQAdQBuAGcAfQBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABoAHkAcABoAHAAYQByADAAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAewBcAGwAaQBzAHQAdABlAHgAdABcAHAAYQByAGQAXABwAGwAYQBpAG4AIAAoADEAKQBcAHQAYQBiACAAfQBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABpAGwAdgBsADAAXABsAHMAMQBcAHEAagBcAGYAaQAtADUAMwA5AFwAbABpADUAMwA5AFwAbABpAG4ANQAzADkAXABoAHkAcABoAHAAYQByADAAXABzAGwAMgA3ADUAXABzAGwAbQB1AGwAdAAxAFwAdAB4ADUANgA3AFwAdAB4ADEAMQA0ADAAewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIABEAGEAcwAgAGIAZQB0AHIAZQB1AHQAZQAgAFcAbwBoAG4AZQBuACAAaQBzAHQAIABlAGkAbgBlACAAYQBtAGIAdQBsAGEAbgB0AGUAIABFAGkAbgBnAGwAaQBlAGQAZQByAHUAbgBnAHMAaABpAGwAZgBlACAAegB1AG0AIABzAGUAbABiAHMAdABcAHUAMgAyADgAXAAnAGUANABuAGQAaQBnAGUAbgAgAFcAbwBoAG4AZQBuACAAZgBcAHUAMgA1ADIAXAAnAGYAYwByACAAZABhAHUAZQByAGgAYQBmAHQAIAB3AGUAcwBlAG4AdABsAGkAYwBoACAAYgBlAGgAaQBuAGQAZQByAHQAZQAgAE0AZQBuAHMAYwBoAGUAbgAgAGkAbQAgAFIAYQBoAG0AZQBuACAAZABlAHIAIABcAHUAMQA2ADcAXAAnAGEANwBcAHUAMQA2ADcAXAAnAGEANwAgADEAMQAzACwAIAA3ADgAIABTAEcAQgAgAEkAWAAuAH0AewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIABaAGkAZQBsACAAZABlAHIAIABMAGUAaQBzAHQAdQBuAGcAIABpAHMAdAAsACAAZABlAHIAIABsAGUAaQBzAHQAdQBuAGcAcwBiAGUAcgBlAGMAaAB0AGkAZwB0AGUAbgAgAFAAZQByAHMAbwBuACAAdQBuAGEAYgBoAFwAdQAyADIAOABcACcAZQA0AG4AZwBpAGcAIAB2AG8AbgAgAEEAcgB0ACAAdQBuAGQAIABTAGMAaAB3AGUAcgBlACAAZABlAHIAIABCAGUAaABpAG4AZABlAHIAdQBuAGcAIABlAGkAbgBlACAAdwBlAGkAdABnAGUAaABlAG4AZABlACAAZQBpAGcAZQBuAHMAdABcAHUAMgAyADgAXAAnAGUANABuAGQAaQBnAGUAIABMAGUAYgBlAG4AcwBmAFwAdQAyADUAMgBcACcAZgBjAGgAcgB1AG4AZwAsACAAcwBvAHoAaQBhAGwAZQAgAHUAbgBkACAAYgBlAHIAdQBmAGwAaQBjAGgAZQAgAEUAaQBuAGcAbABpAGUAZABlAHIAdQBuAGcAIAB1AG4AZAAgAFQAZQBpAGwAaABhAGIAZQAgAGEAbQAgAEwAZQBiAGUAbgAgAGkAbgAgAGQAZQByACAARwBlAG0AZQBpAG4AcwBjAGgAYQBmAHQAIAB6AHUAIABlAHIAXAB1ADIANAA2AFwAJwBmADYAZgBmAG4AZQBuACAAdQBuAGQAIAB6AHUAIABlAHIAaABhAGwAdABlAG4ALgAgAEUAaQBuAGUAIABLAG8AbgBrAHIAZQB0AGkAcwBpAGUAcgB1AG4AZwAgAGQAZQByACAAWgBpAGUAbABlACAAZQByAGYAbwBsAGcAdAAgAGoAZQB3AGUAaQBsAHMAIABpAG0AIABSAGEAaABtAGUAbgAgAGkAbgBkAGkAdgBpAGQAdQBlAGwAbABlAHIAIABIAGkAbABmAGUALQAgAHUAbgBkACAAQgBlAHQAcgBlAHUAdQBuAGcAcwBwAGwAYQBuAHUAbgBnAC4AfQBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGoAXABmAGkALQA1ADMAOQBcAGwAaQA1ADMAOQBcAGwAaQBuADUAMwA5AFwAaAB5AHAAaABwAGEAcgAwAFwAcwBsADIANwA1AFwAcwBsAG0AdQBsAHQAMQBcAHQAeAA1ADYANwBcAHQAeAAxADEANAAwAFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAHsAXABsAGkAcwB0AHQAZQB4AHQAXABwAGEAcgBkAFwAcABsAGEAaQBuACAAKAAyACkAXAB0AGEAYgAgAH0AXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAaQBsAHYAbAAwAFwAbABzADEAXABxAGoAXABmAGkALQA1ADMAOQBcAGwAaQA1ADMAOQBcAGwAaQBuADUAMwA5AFwAaAB5AHAAaABwAGEAcgAwAFwAcwBsADIANwA1AFwAcwBsAG0AdQBsAHQAMQBcAHQAeAA1ADYANwBcAHQAeAAxADEANAAwAHsAXABmADIAXABmAHMAMgAyAFwAYwBmADAAIABaAGkAZQBsACAAZABlAHIAIABMAGUAaQBzAHQAdQBuAGcAIABpAHMAdAAsACAAZABlAHIAIABsAGUAaQBzAHQAdQBuAGcAcwBiAGUAcgBlAGMAaAB0AGkAZwB0AGUAbgAgAFAAZQByAHMAbwBuACAAdQBuAGEAYgBoAFwAdQAyADIAOABcACcAZQA0AG4AZwBpAGcAIAB2AG8AbgAgAEEAcgB0ACAAdQBuAGQAIABTAGMAaAB3AGUAcgBlACAAZABlAHIAIABCAGUAaABpAG4AZABlAHIAdQBuAGcAIABlAGkAbgBlACAAdwBlAGkAdABnAGUAaABlAG4AZABlACAAZQBpAGcAZQBuAHMAdABcAHUAMgAyADgAXAAnAGUANABuAGQAaQBnAGUAIABMAGUAYgBlAG4AcwBmAFwAdQAyADUAMgBcACcAZgBjAGgAcgB1AG4AZwAsACAAcwBvAHoAaQBhAGwAZQAgAHUAbgBkACAAYgBlAHIAdQBmAGwAaQBjAGgAZQAgAEUAaQBuAGcAbABpAGUAZABlAHIAdQBuAGcAIAB1AG4AZAAgAFQAZQBpAGwAaABhAGIAZQAgAGEAbQAgAEwAZQBiAGUAbgAgAGkAbgAgAGQAZQByACAARwBlAG0AZQBpAG4AcwBjAGgAYQBmAHQAIAB6AHUAIABlAHIAXAB1ADIANAA2AFwAJwBmADYAZgBmAG4AZQBuACAAdQBuAGQAIAB6AHUAIABlAHIAaABhAGwAdABlAG4ALgAgAEUAaQBuAGUAIABLAG8AbgBrAHIAZQB0AGkAcwBpAGUAcgB1AG4AZwAgAGQAZQByACAAWgBpAGUAbABlACAAZQByAGYAbwBsAGcAdAAgAGoAZQB3AGUAaQBsAHMAIABpAG0AIABSAGEAaABtAGUAbgAgAGkAbgBkAGkAdgBpAGQAdQBlAGwAbABlAHIAIABIAGkAbABmAGUALQAgAHUAbgBkACAAQgBlAHQAcgBlAHUAdQBuAGcAcwBwAGwAYQBuAHUAbgBnAC4AfQBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGoAXABsAGkANQAzADkAXABsAGkAbgA1ADMAOQBcAGgAeQBwAGgAcABhAHIAMABcAHMAbAAyADcANQBcAHMAbABtAHUAbAB0ADEAXAB0AHgAMQAxADQAMABcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmADIAXABmAHMAMgAyAFwAYwBmADEAXABwAGEAcgB7AFwAbABpAHMAdAB0AGUAeAB0AFwAcABhAHIAZABcAHAAbABhAGkAbgAgACgAMwApAFwAdABhAGIAIAB9AFwAcABhAHIAZABcAHAAbABhAGkAbgBcAGkAbAB2AGwAMABcAGwAcwAxAFwAcQBqAFwAZgBpAC0ANQAzADkAXABsAGkANQAzADkAXABsAGkAbgA1ADMAOQBcAGgAeQBwAGgAcABhAHIAMABcAHMAYQAyADQAMABcAHQAeAA1ADYANwBcAHQAeAAxADEANAAwAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAARABpAGUAIABCAGUAdAByAGUAdQB1AG4AZwAgAGUAcgBmAG8AbABnAHQAIABpAG0AIABTAGkAbgBuAGUAIABkAGUAcgAgAGEAbABsAGcAZQBtAGUAaQBuAGUAbgAgAFoAaQBlAGwAcwBlAHQAegB1AG4AZwAgAGQAZQBzACAAUwBrAEYAIABMAGUAdgBlAHIAawB1AHMAZQBuACwAIAB3AGkAZQAgAHMAaQBlACAAaQBuACAAZABlAG0AIABLAG8AbgB6AGUAcAB0ACAAYgBlAHMAYwBoAHIAaQBlAGIAZQBuACAAaQBzAHQALgAgAEQAaQBlAHMAZQBzACAAaQBzAHQAIABpAG4AIABkAGUAcgAgAGoAZQB3AGUAaQBsAHMAIABhAGsAdAB1AGUAbABsAGUAbgAgAEYAYQBzAHMAdQBuAGcAIABHAHIAdQBuAGQAbABhAGcAZQAgAGQAZQBzACAAQgBlAHQAcgBlAHUAdQBuAGcAcwB2AGUAcgB0AHIAYQBnAGUAcwAuACAARwByAHUAbgBkAGwAYQBnAGUAIABkAGUAcwAgAFYAZQByAHQAcgBhAGcAZQBzACAAYgBpAGwAZABlAG4AIABkAGEAcgBcAHUAMgA1ADIAXAAnAGYAYwBiAGUAcgAgAGgAaQBuAGEAdQBzACAAZABpAGUAIABCAGUAcwB0AGkAbQBtAHUAbgBnAGUAbgAgAGQAZQBzACAATABhAG4AZABlAHMAcgBhAGgAbQBlAG4AdgBlAHIAdAByAGEAZwBlAHMAIABuAGEAYwBoACAAXAB1ADEANgA3AFwAJwBhADcAIAAxADMAMQAgAFMARwBCACAASQBYACAATgBSAFcAIABOAG8AcgBkAHIAaABlAGkAbgAtAFcAZQBzAHQAZgBhAGwAZQBuACAAcwBvAHcAaQBlACAAZABpAGUAIAB2AG8AbQAgAFMAawBGACAATABlAHYAZQByAGsAdQBzAGUAbgAgAG0AaQB0ACAAZABlAG0AIABUAHIAXAB1ADIAMgA4AFwAJwBlADQAZwBlAHIAIABkAGUAcgAgAEUAaQBuAGcAbABpAGUAZABlAHIAdQBuAGcAcwBoAGkAbABmAGUAIABhAGIAZwBlAHMAYwBoAGwAbwBzAHMAZQBuAGUAIABMAGUAaQBzAHQAdQBuAGcAcwAtACwAIAB1AG4AZAAgAFYAZQByAGcAXAB1ADIANQAyAFwAJwBmAGMAdAB1AG4AZwBzAHYAZQByAGUAaQBuAGIAYQByAHUAbgBnACAAZwBlAG0AXAB1ADIAMgA4AFwAJwBlADQAXAB1ADIAMgAzAFwAJwBkAGYAIABcAHUAMQA2ADcAXAAnAGEANwAgADEAMgA1ACAAUwBHAEIAIABJAFgALgAgAEkAbQAgAEwAYQBuAGQAZQBzAHIAYQBoAG0AZQBuAHYAZQByAHQAcgBhAGcAIABuAGEAYwBoACAAXAB1ADEANgA3AFwAJwBhADcAIAAxADMAMQAgAFMARwBCACAASQBYACAATgBvAHIAZAByAGgAZQBpAG4ALQBXAGUAcwB0AGYAYQBsAGUAbgAgAGkAcwB0ACAAaQBuACAAVABlAGkAbAAgAFUALAAgAFoAaQBmAGYAZQByACAAMgAuADQAIABnAGUAcgBlAGcAZQBsAHQALAAgAGQAYQBzAHMAIABkAGkAZQAgAGIAaQBzAGgAZQByAGkAZwBlAG4AIABhAG0AYgB1AGwAYQBuAHQAZQBuACAAQQBuAGcAZQBiAG8AdABlACAAYgBpAHMAIAB6AHUAcgAgAFUAbQBzAHQAZQBsAGwAdQBuAGcAIABhAHUAZgAgAGQAaQBlACAAbgBlAHUAZQAgAEwAZQBpAHMAdAB1AG4AZwBzAHMAeQBzAHQAZQBtAGEAdABpAGsAIABhAHUAZgAgAGQAZQByACAARwByAHUAbgBkAGwAYQBnAGUAIABkAGUAcgAgAHoAdQBtACAAMwAxAC4AMQAyAC4AMgAwADEAOQAgAGcAZQBsAHQAZQBuAGQAZQBuACAATABlAGkAcwB0AHUAbgBnAHMALQAgAHUAbgBkACAAVgBlAHIAZwBcAHUAMgA1ADIAXAAnAGYAYwB0AHUAbgBnAHMAcwB5AHMAdABlAG0AYQB0AGkAawAgAGYAbwByAHQAZwBlAGYAXAB1ADIANQAyAFwAJwBmAGMAaAByAHQAIAB3AGUAcgBkAGUAbgAuACAARABpAGUAIAByAGUAZwBlAGwAaABhAGYAdABlACAAVQBtAHMAdABlAGwAbAB1AG4AZwAgAGEAdQBmACAAZABpAGUAIABuAGUAdQBlAH0AXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAfQA= + + + ewBcAHIAdABmADEAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMAAgAEMAYQBsAGkAYgByAGkAOwB9AHsAXABmADEAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AewBcAGYAMgAgAEEAcgBpAGEAbAA7AH0AfQB7AFwAYwBvAGwAbwByAHQAYgBsACAAOwBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMAAgADsAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADIANQA1ACAAOwB9AHsAXAAqAFwAZABlAGYAYwBoAHAAIABcAGYAMQBcAGYAcwAyADQAfQB7AFwAcwB0AHkAbABlAHMAaABlAGUAdAAgAHsAXABxAGwAXABmADEAXABmAHMAMgA0ACAATgBvAHIAbQBhAGwAOwB9AHsAXAAqAFwAYwBzADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABEAGUAZgBhAHUAbAB0ACAAUABhAHIAYQBnAHIAYQBwAGgAIABGAG8AbgB0ADsAfQB7AFwAKgBcAGMAcwAyAFwAcwBiAGEAcwBlAGQAbwBuADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABMAGkAbgBlACAATgB1AG0AYgBlAHIAOwB9AHsAXAAqAFwAYwBzADMAXAB1AGwAXABmADEAXABmAHMAMgA0AFwAYwBmADIAIABIAHkAcABlAHIAbABpAG4AawA7AH0AewBcACoAXABjAHMANABcAHMAdQBwAGUAcgBcAGYAcwAyADQAIABGAG8AbwB0AG4AbwB0AGUAIABDAGgAYQByAGEAYwB0AGUAcgBzADsAfQB7AFwAKgBcAHQAcwA1AFwAdABzAHIAbwB3AGQAXABmADEAXABmAHMAMgA0AFwAcQBsAFwAdABzAGMAZQBsAGwAcABhAGQAZABmAGwAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAbAAxADAAOABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBiADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAcgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZAByADEAMAA4AFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHQAMwBcAHQAcwB2AGUAcgB0AGEAbAB0AFwAYwBsAHQAeABsAHIAdABiACAATgBvAHIAbQBhAGwAIABUAGEAYgBsAGUAOwB9AHsAXAAqAFwAdABzADYAXAB0AHMAcgBvAHcAZABcAHMAYgBhAHMAZQBkAG8AbgA1AFwAZgAxAFwAZgBzADIANABcAHEAbABcAHQAcgBiAHIAZAByAHQAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAbABcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgBiAFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAHIAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAaABcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgB2AFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBsADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGwAMQAwADgAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAcgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZAByADEAMAA4AFwAdABzAHYAZQByAHQAYQBsAHQAXABjAGwAdAB4AGwAcgB0AGIAIABUAGEAYgBsAGUAIABTAGkAbQBwAGwAZQAgADEAOwB9AH0AewBcACoAXABsAGkAcwB0AHQAYQBiAGwAZQAgAHsAXABsAGkAcwB0AFwAbABpAHMAdAB0AGUAbQBwAGwAYQB0AGUAaQBkAC0AMQB7AFwAbABpAHMAdABsAGUAdgBlAGwAXABsAGUAdgBlAGwAbgBmAGMAMABcAGwAZQB2AGUAbABuAGYAYwBuADAAXABsAGUAdgBlAGwAagBjADAAXABsAGUAdgBlAGwAagBjAG4AMABcAGwAZQB2AGUAbABmAG8AbABsAG8AdwAwAFwAbABlAHYAZQBsAHMAdABhAHIAdABhAHQAMQB7AFwAbABlAHYAZQBsAHQAZQB4AHQAIABcACcAMAAzACgAXAAnADAAMAApADsAfQB7AFwAbABlAHYAZQBsAG4AdQBtAGIAZQByAHMAXAAnADAAMgA7AH0AXABsAGUAdgBlAGwAbABlAGcAYQBsADAAXABsAGUAdgBlAGwAbgBvAHIAZQBzAHQAYQByAHQAMABcAGYAaQAtADMANgAwAFwAbABpADcAMgAwAFwAbABpAG4ANwAyADAAfQB7AFwAbABpAHMAdABsAGUAdgBlAGwAXABsAGUAdgBlAGwAbgBmAGMANABcAGwAZQB2AGUAbABuAGYAYwBuADQAXABsAGUAdgBlAGwAagBjADAAXABsAGUAdgBlAGwAagBjAG4AMABcAGwAZQB2AGUAbABmAG8AbABsAG8AdwAwAFwAbABlAHYAZQBsAHMAdABhAHIAdABhAHQAMQB7AFwAbABlAHYAZQBsAHQAZQB4AHQAIABcACcAMAAyAFwAJwAwADEALgA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADEAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAzADYAMABcAGwAaQAxADQANAAwAFwAbABpAG4AMQA0ADQAMAB9AHsAXABsAGkAcwB0AGwAZQB2AGUAbABcAGwAZQB2AGUAbABuAGYAYwAyAFwAbABlAHYAZQBsAG4AZgBjAG4AMgBcAGwAZQB2AGUAbABqAGMAMgBcAGwAZQB2AGUAbABqAGMAbgAyAFwAbABlAHYAZQBsAGYAbwBsAGwAbwB3ADAAXABsAGUAdgBlAGwAcwB0AGEAcgB0AGEAdAAxAHsAXABsAGUAdgBlAGwAdABlAHgAdAAgAFwAJwAwADIAXAAnADAAMgAuADsAfQB7AFwAbABlAHYAZQBsAG4AdQBtAGIAZQByAHMAXAAnADAAMQA7AH0AXABsAGUAdgBlAGwAbABlAGcAYQBsADAAXABsAGUAdgBlAGwAbgBvAHIAZQBzAHQAYQByAHQAMABcAGYAaQAtADEAOAAwAFwAbABpADIAMQA2ADAAXABsAGkAbgAyADEANgAwAH0AewBcAGwAaQBzAHQAbABlAHYAZQBsAFwAbABlAHYAZQBsAG4AZgBjADAAXABsAGUAdgBlAGwAbgBmAGMAbgAwAFwAbABlAHYAZQBsAGoAYwAwAFwAbABlAHYAZQBsAGoAYwBuADAAXABsAGUAdgBlAGwAZgBvAGwAbABvAHcAMABcAGwAZQB2AGUAbABzAHQAYQByAHQAYQB0ADEAewBcAGwAZQB2AGUAbAB0AGUAeAB0ACAAXAAnADAAMgBcACcAMAAzAC4AOwB9AHsAXABsAGUAdgBlAGwAbgB1AG0AYgBlAHIAcwBcACcAMAAxADsAfQBcAGwAZQB2AGUAbABsAGUAZwBhAGwAMABcAGwAZQB2AGUAbABuAG8AcgBlAHMAdABhAHIAdAAwAFwAZgBpAC0AMwA2ADAAXABsAGkAMgA4ADgAMABcAGwAaQBuADIAOAA4ADAAfQB7AFwAbABpAHMAdABsAGUAdgBlAGwAXABsAGUAdgBlAGwAbgBmAGMANABcAGwAZQB2AGUAbABuAGYAYwBuADQAXABsAGUAdgBlAGwAagBjADAAXABsAGUAdgBlAGwAagBjAG4AMABcAGwAZQB2AGUAbABmAG8AbABsAG8AdwAwAFwAbABlAHYAZQBsAHMAdABhAHIAdABhAHQAMQB7AFwAbABlAHYAZQBsAHQAZQB4AHQAIABcACcAMAAyAFwAJwAwADQALgA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADEAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAzADYAMABcAGwAaQAzADYAMAAwAFwAbABpAG4AMwA2ADAAMAB9AHsAXABsAGkAcwB0AGwAZQB2AGUAbABcAGwAZQB2AGUAbABuAGYAYwAyAFwAbABlAHYAZQBsAG4AZgBjAG4AMgBcAGwAZQB2AGUAbABqAGMAMgBcAGwAZQB2AGUAbABqAGMAbgAyAFwAbABlAHYAZQBsAGYAbwBsAGwAbwB3ADAAXABsAGUAdgBlAGwAcwB0AGEAcgB0AGEAdAAxAHsAXABsAGUAdgBlAGwAdABlAHgAdAAgAFwAJwAwADIAXAAnADAANQAuADsAfQB7AFwAbABlAHYAZQBsAG4AdQBtAGIAZQByAHMAXAAnADAAMQA7AH0AXABsAGUAdgBlAGwAbABlAGcAYQBsADAAXABsAGUAdgBlAGwAbgBvAHIAZQBzAHQAYQByAHQAMABcAGYAaQAtADEAOAAwAFwAbABpADQAMwAyADAAXABsAGkAbgA0ADMAMgAwAH0AewBcAGwAaQBzAHQAbABlAHYAZQBsAFwAbABlAHYAZQBsAG4AZgBjADAAXABsAGUAdgBlAGwAbgBmAGMAbgAwAFwAbABlAHYAZQBsAGoAYwAwAFwAbABlAHYAZQBsAGoAYwBuADAAXABsAGUAdgBlAGwAZgBvAGwAbABvAHcAMABcAGwAZQB2AGUAbABzAHQAYQByAHQAYQB0ADEAewBcAGwAZQB2AGUAbAB0AGUAeAB0ACAAXAAnADAAMgBcACcAMAA2AC4AOwB9AHsAXABsAGUAdgBlAGwAbgB1AG0AYgBlAHIAcwBcACcAMAAxADsAfQBcAGwAZQB2AGUAbABsAGUAZwBhAGwAMABcAGwAZQB2AGUAbABuAG8AcgBlAHMAdABhAHIAdAAwAFwAZgBpAC0AMwA2ADAAXABsAGkANQAwADQAMABcAGwAaQBuADUAMAA0ADAAfQB7AFwAbABpAHMAdABsAGUAdgBlAGwAXABsAGUAdgBlAGwAbgBmAGMANABcAGwAZQB2AGUAbABuAGYAYwBuADQAXABsAGUAdgBlAGwAagBjADAAXABsAGUAdgBlAGwAagBjAG4AMABcAGwAZQB2AGUAbABmAG8AbABsAG8AdwAwAFwAbABlAHYAZQBsAHMAdABhAHIAdABhAHQAMQB7AFwAbABlAHYAZQBsAHQAZQB4AHQAIABcACcAMAAyAFwAJwAwADcALgA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADEAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAzADYAMABcAGwAaQA1ADcANgAwAFwAbABpAG4ANQA3ADYAMAB9AHsAXABsAGkAcwB0AGwAZQB2AGUAbABcAGwAZQB2AGUAbABuAGYAYwAyAFwAbABlAHYAZQBsAG4AZgBjAG4AMgBcAGwAZQB2AGUAbABqAGMAMgBcAGwAZQB2AGUAbABqAGMAbgAyAFwAbABlAHYAZQBsAGYAbwBsAGwAbwB3ADAAXABsAGUAdgBlAGwAcwB0AGEAcgB0AGEAdAAxAHsAXABsAGUAdgBlAGwAdABlAHgAdAAgAFwAJwAwADIAXAAnADAAOAAuADsAfQB7AFwAbABlAHYAZQBsAG4AdQBtAGIAZQByAHMAXAAnADAAMQA7AH0AXABsAGUAdgBlAGwAbABlAGcAYQBsADAAXABsAGUAdgBlAGwAbgBvAHIAZQBzAHQAYQByAHQAMABcAGYAaQAtADEAOAAwAFwAbABpADYANAA4ADAAXABsAGkAbgA2ADQAOAAwAH0AewBcAGwAaQBzAHQAbgBhAG0AZQAgADsAfQBcAGwAaQBzAHQAaQBkADIAfQB7AFwAbABpAHMAdABcAGwAaQBzAHQAdABlAG0AcABsAGEAdABlAGkAZAAtADEAewBcAGwAaQBzAHQAbABlAHYAZQBsAFwAbABlAHYAZQBsAG4AZgBjADAAXABsAGUAdgBlAGwAbgBmAGMAbgAwAFwAbABlAHYAZQBsAGoAYwAwAFwAbABlAHYAZQBsAGoAYwBuADAAXABsAGUAdgBlAGwAZgBvAGwAbABvAHcAMABcAGwAZQB2AGUAbABzAHQAYQByAHQAYQB0ADEAewBcAGwAZQB2AGUAbAB0AGUAeAB0ACAAXAAnADAAMwAoAFwAJwAwADAAKQA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADIAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAzADYAMABcAGwAaQA3ADIAMABcAGwAaQBuADcAMgAwAH0AewBcAGwAaQBzAHQAbABlAHYAZQBsAFwAbABlAHYAZQBsAG4AZgBjADQAXABsAGUAdgBlAGwAbgBmAGMAbgA0AFwAbABlAHYAZQBsAGoAYwAwAFwAbABlAHYAZQBsAGoAYwBuADAAXABsAGUAdgBlAGwAZgBvAGwAbABvAHcAMABcAGwAZQB2AGUAbABzAHQAYQByAHQAYQB0ADEAewBcAGwAZQB2AGUAbAB0AGUAeAB0ACAAXAAnADAAMgBcACcAMAAxAC4AOwB9AHsAXABsAGUAdgBlAGwAbgB1AG0AYgBlAHIAcwBcACcAMAAxADsAfQBcAGwAZQB2AGUAbABsAGUAZwBhAGwAMABcAGwAZQB2AGUAbABuAG8AcgBlAHMAdABhAHIAdAAwAFwAZgBpAC0AMwA2ADAAXABsAGkAMQA0ADQAMABcAGwAaQBuADEANAA0ADAAfQB7AFwAbABpAHMAdABsAGUAdgBlAGwAXABsAGUAdgBlAGwAbgBmAGMAMgBcAGwAZQB2AGUAbABuAGYAYwBuADIAXABsAGUAdgBlAGwAagBjADIAXABsAGUAdgBlAGwAagBjAG4AMgBcAGwAZQB2AGUAbABmAG8AbABsAG8AdwAwAFwAbABlAHYAZQBsAHMAdABhAHIAdABhAHQAMQB7AFwAbABlAHYAZQBsAHQAZQB4AHQAIABcACcAMAAyAFwAJwAwADIALgA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADEAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAxADgAMABcAGwAaQAyADEANgAwAFwAbABpAG4AMgAxADYAMAB9AHsAXABsAGkAcwB0AGwAZQB2AGUAbABcAGwAZQB2AGUAbABuAGYAYwAwAFwAbABlAHYAZQBsAG4AZgBjAG4AMABcAGwAZQB2AGUAbABqAGMAMABcAGwAZQB2AGUAbABqAGMAbgAwAFwAbABlAHYAZQBsAGYAbwBsAGwAbwB3ADAAXABsAGUAdgBlAGwAcwB0AGEAcgB0AGEAdAAxAHsAXABsAGUAdgBlAGwAdABlAHgAdAAgAFwAJwAwADIAXAAnADAAMwAuADsAfQB7AFwAbABlAHYAZQBsAG4AdQBtAGIAZQByAHMAXAAnADAAMQA7AH0AXABsAGUAdgBlAGwAbABlAGcAYQBsADAAXABsAGUAdgBlAGwAbgBvAHIAZQBzAHQAYQByAHQAMABcAGYAaQAtADMANgAwAFwAbABpADIAOAA4ADAAXABsAGkAbgAyADgAOAAwAH0AewBcAGwAaQBzAHQAbABlAHYAZQBsAFwAbABlAHYAZQBsAG4AZgBjADQAXABsAGUAdgBlAGwAbgBmAGMAbgA0AFwAbABlAHYAZQBsAGoAYwAwAFwAbABlAHYAZQBsAGoAYwBuADAAXABsAGUAdgBlAGwAZgBvAGwAbABvAHcAMABcAGwAZQB2AGUAbABzAHQAYQByAHQAYQB0ADEAewBcAGwAZQB2AGUAbAB0AGUAeAB0ACAAXAAnADAAMgBcACcAMAA0AC4AOwB9AHsAXABsAGUAdgBlAGwAbgB1AG0AYgBlAHIAcwBcACcAMAAxADsAfQBcAGwAZQB2AGUAbABsAGUAZwBhAGwAMABcAGwAZQB2AGUAbABuAG8AcgBlAHMAdABhAHIAdAAwAFwAZgBpAC0AMwA2ADAAXABsAGkAMwA2ADAAMABcAGwAaQBuADMANgAwADAAfQB7AFwAbABpAHMAdABsAGUAdgBlAGwAXABsAGUAdgBlAGwAbgBmAGMAMgBcAGwAZQB2AGUAbABuAGYAYwBuADIAXABsAGUAdgBlAGwAagBjADIAXABsAGUAdgBlAGwAagBjAG4AMgBcAGwAZQB2AGUAbABmAG8AbABsAG8AdwAwAFwAbABlAHYAZQBsAHMAdABhAHIAdABhAHQAMQB7AFwAbABlAHYAZQBsAHQAZQB4AHQAIABcACcAMAAyAFwAJwAwADUALgA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADEAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAxADgAMABcAGwAaQA0ADMAMgAwAFwAbABpAG4ANAAzADIAMAB9AHsAXABsAGkAcwB0AGwAZQB2AGUAbABcAGwAZQB2AGUAbABuAGYAYwAwAFwAbABlAHYAZQBsAG4AZgBjAG4AMABcAGwAZQB2AGUAbABqAGMAMABcAGwAZQB2AGUAbABqAGMAbgAwAFwAbABlAHYAZQBsAGYAbwBsAGwAbwB3ADAAXABsAGUAdgBlAGwAcwB0AGEAcgB0AGEAdAAxAHsAXABsAGUAdgBlAGwAdABlAHgAdAAgAFwAJwAwADIAXAAnADAANgAuADsAfQB7AFwAbABlAHYAZQBsAG4AdQBtAGIAZQByAHMAXAAnADAAMQA7AH0AXABsAGUAdgBlAGwAbABlAGcAYQBsADAAXABsAGUAdgBlAGwAbgBvAHIAZQBzAHQAYQByAHQAMABcAGYAaQAtADMANgAwAFwAbABpADUAMAA0ADAAXABsAGkAbgA1ADAANAAwAH0AewBcAGwAaQBzAHQAbABlAHYAZQBsAFwAbABlAHYAZQBsAG4AZgBjADQAXABsAGUAdgBlAGwAbgBmAGMAbgA0AFwAbABlAHYAZQBsAGoAYwAwAFwAbABlAHYAZQBsAGoAYwBuADAAXABsAGUAdgBlAGwAZgBvAGwAbABvAHcAMABcAGwAZQB2AGUAbABzAHQAYQByAHQAYQB0ADEAewBcAGwAZQB2AGUAbAB0AGUAeAB0ACAAXAAnADAAMgBcACcAMAA3AC4AOwB9AHsAXABsAGUAdgBlAGwAbgB1AG0AYgBlAHIAcwBcACcAMAAxADsAfQBcAGwAZQB2AGUAbABsAGUAZwBhAGwAMABcAGwAZQB2AGUAbABuAG8AcgBlAHMAdABhAHIAdAAwAFwAZgBpAC0AMwA2ADAAXABsAGkANQA3ADYAMABcAGwAaQBuADUANwA2ADAAfQB7AFwAbABpAHMAdABsAGUAdgBlAGwAXABsAGUAdgBlAGwAbgBmAGMAMgBcAGwAZQB2AGUAbABuAGYAYwBuADIAXABsAGUAdgBlAGwAagBjADIAXABsAGUAdgBlAGwAagBjAG4AMgBcAGwAZQB2AGUAbABmAG8AbABsAG8AdwAwAFwAbABlAHYAZQBsAHMAdABhAHIAdABhAHQAMQB7AFwAbABlAHYAZQBsAHQAZQB4AHQAIABcACcAMAAyAFwAJwAwADgALgA7AH0AewBcAGwAZQB2AGUAbABuAHUAbQBiAGUAcgBzAFwAJwAwADEAOwB9AFwAbABlAHYAZQBsAGwAZQBnAGEAbAAwAFwAbABlAHYAZQBsAG4AbwByAGUAcwB0AGEAcgB0ADAAXABmAGkALQAxADgAMABcAGwAaQA2ADQAOAAwAFwAbABpAG4ANgA0ADgAMAB9AHsAXABsAGkAcwB0AG4AYQBtAGUAIAA7AH0AXABsAGkAcwB0AGkAZAAzAH0AfQB7AFwAKgBcAGwAaQBzAHQAbwB2AGUAcgByAGkAZABlAHQAYQBiAGwAZQAgAHsAXABsAGkAcwB0AG8AdgBlAHIAcgBpAGQAZQBcAGwAaQBzAHQAaQBkADIAXABsAGkAcwB0AG8AdgBlAHIAcgBpAGQAZQBjAG8AdQBuAHQAMABcAGwAcwAyAH0AewBcAGwAaQBzAHQAbwB2AGUAcgByAGkAZABlAFwAbABpAHMAdABpAGQAMwBcAGwAaQBzAHQAbwB2AGUAcgByAGkAZABlAGMAbwB1AG4AdAAwAFwAbABzADMAfQB9AFwAbgBvAHUAaQBjAG8AbQBwAGEAdABcAHMAcABsAHkAdAB3AG4AaQBuAGUAXABoAHQAbQBhAHUAdABzAHAAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBqAFwAZgBpAC0ANQAzADkAXABsAGkANQAzADkAXABsAGkAbgA1ADMAOQBcAGgAeQBwAGgAcABhAHIAMABcAHMAbAAyADcANQBcAHMAbABtAHUAbAB0ADEAXABzAGEAMgAwADAAXAB0AHgANQA2ADcAXAB0AHgAMQAxADQAMAB7AFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxACAAXAB0AGEAYgAgAH0AewBcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgAEwAZQBpAHMAdAB1AG4AZwBzAC0AIAB1AG4AZAAgAFYAZQByAGcAXAB1ADIANQAyAFwAJwBmAGMAdAB1AG4AZwBzAHMAeQBzAHQAZQBtAGEAdABpAGsAIABiAGUAZwBpAG4AbgB0ACAAYQBtACAAMAAxAC4AMAAxAC4AMgAwADIAMwAgAHUAbgBkACAAZQBuAGQAZQB0ACAAYQBtACAAMwAxAC4AMAA1AC4AMgAwADIANQAuACAARABhAHMAIABLAG8AbgB6AGUAcAB0ACwAIABkAGkAZQAgAEwAZQBpAHMAdAB1AG4AZwBzAC0AIAB1AG4AZAAgAFYAZQByAGcAXAB1ADIANQAyAFwAJwBmAGMAdAB1AG4AZwBzAHYAZQByAGUAaQBuAGIAYQByAHUAbgBnACAAawBcAHUAMgA0ADYAXAAnAGYANgBuAG4AZQBuACAAYgBlAGkAbQAgAFMAawBGACAATABlAHYAZQByAGsAdQBzAGUAbgAgAGUAaQBuAGcAZQBzAGUAaABlAG4AIAB1AG4AZAAgAGEAdQBmACAAVwB1AG4AcwBjAGgAIABhAHUAcwBnAGUAaABcAHUAMgAyADgAXAAnAGUANABuAGQAaQBnAHQAIAB3AGUAcgBkAGUAbgAuACAAfQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAYwBcAGgAeQBwAGgAcABhAHIAMABcAHMAbAAyADcANQBcAHMAbABtAHUAbAB0ADEAXABzAGEAMgAwADAAewBcAGIAXABmADIAXABmAHMAMgA0AFwAYwBmADEAIABcAHUAMQA2ADcAXAAnAGEANwAgADIAIABJAG4AaABhAGwAdAAgAGQAZQByACAATABlAGkAcwB0AHUAbgBnAH0AXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGoAXABoAHkAcABoAHAAYQByADAAXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgB7AFwAbABpAHMAdAB0AGUAeAB0AFwAcABhAHIAZABcAHAAbABhAGkAbgAgACgAMQApAFwAdABhAGIAIAB9AFwAcABhAHIAZABcAHAAbABhAGkAbgBcAGkAbAB2AGwAMABcAGwAcwAyAFwAcQBqAFwAZgBpAC0ANQAzADkAXABsAGkANQAzADkAXABsAGkAbgA1ADMAOQBcAGgAeQBwAGgAcABhAHIAMABcAHMAbAAyADcANQBcAHMAbABtAHUAbAB0ADEAXABzAGEAMgA0ADAAXAB0AHgANQA2ADcAewBcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgAEQAaQBlACAATABlAGkAcwB0AHUAbgBnACAAYgBlAGkAbgBoAGEAbAB0AGUAdAAgAGQAaQBlACAAaQBtACAARQBpAG4AegBlAGwAZgBhAGwAbAAgAGUAcgBmAG8AcgBkAGUAcgBsAGkAYwBoAGUAbgAgAEgAaQBsAGYAZQBuACAAegB1AHIAIABCAGUAcgBhAHQAdQBuAGcALAAgAEIAZQBnAGwAZQBpAHQAdQBuAGcALAAgAEIAZQB0AHIAZQB1AHUAbgBnACAAdQBuAGQAIABGAFwAdQAyADQANgBcACcAZgA2AHIAZABlAHIAdQBuAGcAIABuAGEAYwBoACAATQBhAFwAdQAyADIAMwBcACcAZABmAGcAYQBiAGUAIABkAGUAcgAgAFwAdQAxADYANwBcACcAYQA3AFwAdQAxADYANwBcACcAYQA3ACAAMQAxADMALAAgADcAOAAgAFMARwBCACAASQBYACAAdQBuAGQAIABkAGUAcgAgAEIAZQBzAHQAaQBtAG0AdQBuAGcAZQBuACAAZABlAHMAIABMAGEAbgBkAGUAcwByAGEAaABtAGUAbgB2AGUAcgB0AHIAYQBnAGUAcwAgAG4AYQBjAGgAIABcAHUAMQA2ADcAXAAnAGEANwAgADEAMwAxACAAUwBHAEIAIABJAFgAIABOAG8AcgBkAHIAaABlAGkAbgAtAFcAZQBzAHQAZgBhAGwAZQBuACAAcwBvAHcAaQBlACAAZABlAHIAIABMAGUAaQBzAHQAdQBuAGcAcwAtACAAdQBuAGQAIABWAGUAcgBnAFwAdQAyADUAMgBcACcAZgBjAHQAdQBuAGcAcwB2AGUAcgBlAGkAbgBiAGEAcgB1AG4AZwAuAH0AXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgB7AFwAbABpAHMAdAB0AGUAeAB0AFwAcABhAHIAZABcAHAAbABhAGkAbgAgACgAMgApAFwAdABhAGIAIAB9AFwAcABhAHIAZABcAHAAbABhAGkAbgBcAGkAbAB2AGwAMABcAGwAcwAyAFwAcQBqAFwAZgBpAC0ANQAzADkAXABsAGkANQAzADkAXABsAGkAbgA1ADMAOQBcAGgAeQBwAGgAcABhAHIAMABcAHMAbAAyADcANQBcAHMAbABtAHUAbAB0ADEAXABzAGEAMgA0ADAAewBcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgAEQAaQBlACAATABlAGkAcwB0AHUAbgBnAHMAZQByAGIAcgBpAG4AZwB1AG4AZwAgAHIAaQBjAGgAdABlAHQAIABzAGkAYwBoACAAbgBhAGMAaAAgAGQAZQBtACAAbQBpAHQAIABkAGUAcgAgAGwAZQBpAHMAdAB1AG4AZwBzAGIAZQByAGUAYwBoAHQAaQBnAHQAZQBuACAAUABlAHIAcwBvAG4AIAB2AGUAcgBlAGkAbgBiAGEAcgB0AGUAbgAgAGkAbgBkAGkAdgBpAGQAdQBlAGwAbABlAG4AIABIAGkAbABmAGUALQAgAHUAbgBkACAAQgBlAHQAcgBlAHUAdQBuAGcAcwBwAGwAYQBuACwAIABkAGUAcgAgAGQAaQBlACAAQgBlAHQAcgBlAHUAdQBuAGcAcwBsAGUAaQBzAHQAdQBuAGcAZQBuACAAdQBuAGQAIABkAGUAcgBlAG4AIABaAGkAZQBsAGUAIABiAGUAbgBlAG4AbgB0AC4AIABFAHIAIAB3AGkAcgBkACAAcgBlAGcAZQBsAG0AXAB1ADIAMgA4AFwAJwBlADQAXAB1ADIAMgAzAFwAJwBkAGYAaQBnACAAZgBvAHIAdABnAGUAcwBjAGgAcgBpAGUAYgBlAG4AIAB1AG4AZAAgAGkAcwB0ACAAaQBuACAAZABlAHIAIABqAGUAdwBlAGkAbABzACAAZwBcAHUAMgA1ADIAXAAnAGYAYwBsAHQAaQBnAGUAbgAgAEYAYQBzAHMAdQBuAGcAIABCAGUAcwB0AGEAbgBkAHQAZQBpAGwAIABkAGkAZQBzAGUAcwAgAFYAZQByAHQAcgBhAGcAcwAgACgAcwBpAGUAaABlACAAQQBuAGwAYQBnAGUAMQApAC4AIAB9AFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAewBcAGwAaQBzAHQAdABlAHgAdABcAHAAYQByAGQAXABwAGwAYQBpAG4AIAAoADMAKQBcAHQAYQBiACAAfQBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABpAGwAdgBsADAAXABsAHMAMgBcAHEAagBcAGYAaQAtADUAMwA5AFwAbABpADUAMwA5AFwAbABpAG4ANQAzADkAXABoAHkAcABoAHAAYQByADAAXABzAGwAMgA3ADUAXABzAGwAbQB1AGwAdAAxAFwAcwBhADIANAAwAFwAdAB4ADUANgA3AHsAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIABBAGwAcwAgAE0AYQBcAHUAMgAyADMAXAAnAGQAZgBuAGEAaABtAGUAbgAgAHoAdQByACAARQByAGIAcgBpAG4AZwB1AG4AZwAgAGQAaQBlAHMAZQByACAATABlAGkAcwB0AHUAbgBnAGUAbgAgAGsAXAB1ADIANAA2AFwAJwBmADYAbgBuAGUAbgAgAHYAZQByAHMAYwBoAGkAZQBkAGUAbgBlACAARgBvAHIAbQBlAG4AIABkAGUAcgAgAEgAaQBsAGYAZQBzAHQAZQBsAGwAdQBuAGcAIAB1AG4AZAAgAHUAbgB0AGUAcgBzAGMAaABpAGUAZABsAGkAYwBoAGUAIABVAG4AdABlAHIAcwB0AFwAdQAyADUAMgBcACcAZgBjAHQAegB1AG4AZwBzAC0AIAB1AG4AZAAgAEIAZQByAGEAdAB1AG4AZwBzAGEAbgBnAGUAYgBvAHQAZQAgAGQAaQBlAG4AZQBuACwAIAB3AGkAZQAgAGQAaQBlACAASABpAGwAZgBlAHAAbABhAG4AdQBuAGcAIAB1AG4AZAAgAFIAZQBmAGwAZQBrAHQAaQBvAG4ALAAgAGQAYQBzACAARwBlAHMAcAByAFwAdQAyADIAOABcACcAZQA0AGMAaABzAGEAbgBnAGUAYgBvAHQALAAgAFQAZQBsAGUAZgBvAG4AawBvAG4AdABhAGsAdABlACwAIABwAGUAcgBzAFwAdQAyADQANgBcACcAZgA2AG4AbABpAGMAaABlACAASwBvAG4AdABhAGsAdABlACwAIABCAGUAZwBsAGUAaQB0AHUAbgBnACwAIABNAGkAdABoAGkAbABmAGUALAAgAEEAbgBsAGUAaQB0AHUAbgBnACwAIABcAHUAMgAyADAAXAAnAGQAYwBiAGUAcgBuAGEAaABtAGUALAAgAFwAdQAyADIAMABcACcAZABjAGIAdQBuAGcALAAgAEIAZQByAGEAdAB1AG4AZwAsACAARQByAGkAbgBuAGUAcgB1AG4AZwAsACAASwBvAG4AdAByAG8AbABsAGUALAAgAFoAZQBpAHQAZQBuACAAdgBvAG4AIABFAHIAcgBlAGkAYwBoAGIAYQByAGsAZQBpAHQALAAgAFoAdQBzAGEAbQBtAGUAbgBhAHIAYgBlAGkAdAAgAG0AaQB0ACAAYQBuAGQAZQByAGUAbgAgAEQAaQBlAG4AcwB0AGUAbgAgAHUAbgBkACAASQBuAHMAdABpAHQAdQB0AGkAbwBuAGUAbgAsACAASwBvAG8AcABlAHIAYQB0AGkAbwBuAHMAawBvAG4AdABhAGsAdABlACAAbQBpAHQAIABCAGUAegB1AGcAcwBwAGUAcgBzAG8AbgBlAG4ALgAgAEQAaQBlACAAZQBpAG4AegBlAGwAZgBhAGwAbABiAGUAegBvAGcAZQBuAGUAbgAgAE0AYQBcAHUAMgAyADMAXAAnAGQAZgBuAGEAaABtAGUAbgAgAGsAXAB1ADIANAA2AFwAJwBmADYAbgBuAGUAbgAgAG0AaQB0ACAARwByAHUAcABwAGUAbgBhAG4AZwBlAGIAbwB0AGUAbgAgAGsAbwBtAGIAaQBuAGkAZQByAHQAIAB3AGUAcgBkAGUAbgAuAH0AXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgB7AFwAbABpAHMAdAB0AGUAeAB0AFwAcABhAHIAZABcAHAAbABhAGkAbgAgACgANAApAFwAdABhAGIAIAB9AFwAcABhAHIAZABcAHAAbABhAGkAbgBcAGkAbAB2AGwAMABcAGwAcwAyAFwAcQBqAFwAZgBpAC0ANQAzADkAXABsAGkANQAzADkAXABsAGkAbgA1ADMAOQBcAGgAeQBwAGgAcABhAHIAMABcAHMAbAAyADcANQBcAHMAbABtAHUAbAB0ADEAXABzAGEAMgA0ADAAXAB0AHgANQA2ADcAewBcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgAEQAaQBlACAAQgBlAHQAcgBlAHUAdQBuAGcAIAB1AG0AZgBhAHMAcwB0ACAAYQB1AGYAcwB1AGMAaABlAG4AZABlACAASABpAGwAZgBlACAAaQBuACAAZABlAHIAIABoAFwAdQAyADIAOABcACcAZQA0AHUAcwBsAGkAYwBoAGUAbgAgAFUAbQBnAGUAYgB1AG4AZwAgAGQAZQByACAAbABlAGkAcwB0AHUAbgBnAHMAYgBlAHIAZQBjAGgAdABpAGcAdABlAG4AIABQAGUAcgBzAG8AbgAgAHUAbgBkACAAaQBtACAAZABpAHIAZQBrAHQAZQBuACAAVQBtAGYAZQBsAGQAIABkAGUAcgAgAGwAZQBpAHMAdAB1AG4AZwBzAGIAZQByAGUAYwBoAHQAaQBnAHQAZQBuACAAUABlAHIAcwBvAG4AIAAoAEgAYQB1AHMAYgBlAHMAdQBjAGgAZQAsACAAQgBlAGcAbABlAGkAdAB1AG4AZwAgAHUAbgBkACAAQgBlAHMAdQBjAGgAZQAgAGEAdQBcAHUAMgAyADMAXAAnAGQAZgBlAHIAaABhAGwAYgAgAGQAZQByACAAVwBvAGgAbgB1AG4AZwApACAAcwBvAHcAaQBlACAATABlAGkAcwB0AHUAbgBnAHMAYQBuAGcAZQBiAG8AdABlACAAYQB1AFwAdQAyADIAMwBcACcAZABmAGUAcgBoAGEAbABiACAAZABlAHIAIABEAGkAZQBuAHMAdABzAHQAZQBsAGwAZQAuAH0AXABmADIAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgB7AFwAbABpAHMAdAB0AGUAeAB0AFwAcABhAHIAZABcAHAAbABhAGkAbgAgACgANQApAFwAdABhAGIAIAB9AFwAcABhAHIAZABcAHAAbABhAGkAbgBcAGkAbAB2AGwAMABcAGwAcwAyAFwAcQBqAFwAZgBpAC0ANQAzADkAXABsAGkANQAzADkAXABsAGkAbgA1ADMAOQBcAGgAeQBwAGgAcABhAHIAMABcAHMAbAAyADcANQBcAHMAbABtAHUAbAB0ADEAXABzAGEAMgAwADAAewBcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgAEQAZQByACAAUwBvAHoAaQBhAGwAZABpAGUAbgBzAHQAIABrAGEAdABoAG8AbABpAHMAYwBoAGUAcgAgAEYAcgBhAHUAZQBuACAAZQAuAFYALgAgAEwAZQB2AGUAcgBrAHUAcwBlAG4AIABmAFwAdQAyADUAMgBcACcAZgBjAGgAcgB0ACAAZQBpAG4AZQAgAEQAbwBrAHUAbQBlAG4AdABhAHQAaQBvAG4ALgB9AFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBqAFwAaAB5AHAAaABwAGEAcgAwAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBjAFwAaAB5AHAAaABwAGEAcgAwAHsAXABiAFwAZgAyAFwAZgBzADIANABcAGMAZgAxACAAXAB1ADEANgA3AFwAJwBhADcAIAAzACAAVQBtAGYAYQBuAGcAIABkAGUAcgAgAEwAZQBpAHMAdAB1AG4AZwB9AFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBqAFwAaAB5AHAAaABwAGEAcgAwAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxAFwAcABhAHIAewBcAGwAaQBzAHQAdABlAHgAdABcAHAAYQByAGQAXABwAGwAYQBpAG4AIAAoADEAKQBcAHQAYQBiACAAfQBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABpAGwAdgBsADAAXABsAHMAMwBcAHEAagBcAGYAaQAtADUAMwA5AFwAbABpADUAMwA5AFwAbABpAG4ANQAzADkAXABoAHkAcABoAHAAYQByADAAXABzAGEAMgA0ADAAXAB0AHgANQA0ADAAewBcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgAEQAaQBlACAASQBuAHQAZQBuAHMAaQB0AFwAdQAyADIAOABcACcAZQA0AHQAIAB1AG4AZAAgAEQAYQB1AGUAcgAgAGQAZQByACAAegB1ACAAZQByAGIAcgBpAG4AZwBlAG4AZABlAG4AIABMAGUAaQBzAHQAdQBuAGcAZQBuACAAcwBpAG4AZAAgAGUAaQBuAHoAZQBsAGYAYQBsAGwAYgBlAHoAbwBnAGUAbgAgAHUAbgBkACAAcgBpAGMAaAB0AGUAbgAgAHMAaQBjAGgAIABuAGEAYwBoACAAZABlAG0AIABpAG4AZABpAHYAaQBkAHUAZQBsAGwAZQBuACAASABpAGwAZgBlAGIAZQBkAGEAcgBmAC4AIABBAHUAYwBoACAAZABpAGUAIABCAGUAdAByAGUAdQB1AG4AZwBzAC0ALwBLAG8AbgB0AGEAawB0AHoAZQBpAHQAZQBuACAAcgBpAGMAaAB0AGUAbgAgAHMAaQBjAGgAIABuAGEAYwBoACAAZABlAG0AIABpAG4AZABpAHYAaQBkAHUAZQBsAGwAZQBuACAASABpAGwAZgBlAGIAZQBkAGEAcgBmACAAdQBuAGQAIABkAGUAcgAgAGkAbgBkAGkAdgBpAGQAdQBlAGwAbABlAG4AIABMAGUAYgBlAG4AcwBzAGkAdAB1AGEAdABpAG8AbgAgAGQAZQByACAAbABlAGkAcwB0AHUAbgBnAHMAYgBlAHIAZQBjAGgAdABpAGcAdABlAG4AIABQAGUAcgBzAG8AbgAuACAAUwBpAGUAIAB3AGUAcgBkAGUAbgAgAG0AaQB0ACAAZABlAHIAIABsAGUAaQBzAHQAdQBuAGcAcwBiAGUAcgBlAGMAaAB0AGkAZwB0AGUAbgAgAFAAZQByAHMAbwBuACAAYQB1AGYAIABkAGUAcgAgAEcAcgB1AG4AZABsAGEAZwBlACAAZABlAHMAIABCAGUAdwBpAGwAbABpAGcAdQBuAGcAcwBiAGUAcwBjAGgAZQBpAGQAZQBzACAAZABlAHMAIABMAGUAaQBzAHQAdQBuAGcAcwB0AHIAXAB1ADIAMgA4AFwAJwBlADQAZwBlAHIAcwAgAHYAZQByAGUAaQBuAGIAYQByAHQAfQB7AFwAcwB1AHAAZQByAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAwAFwAYwBzADQAIAAxAH0AewBcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgAC4AfQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAHsAXABsAGkAcwB0AHQAZQB4AHQAXABwAGEAcgBkAFwAcABsAGEAaQBuACAAKAAyACkAXAB0AGEAYgAgAH0AXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAaQBsAHYAbAAwAFwAbABzADMAXABxAGoAXABmAGkALQA1ADMAOQBcAGwAaQA1ADMAOQBcAGwAaQBuADUAMwA5AFwAaAB5AHAAaABwAGEAcgAwAFwAdAB4ADUANAAwAHsAXABmADIAXABmAHMAMgAyAFwAYwBmADEAIABEAGkAZQAgAEYAZQBzAHQAbABlAGcAdQBuAGcAIABkAGUAcgAgAEEAbgB6AGEAaABsACAAZABlAHIAIABGAGEAYwBoAGwAZQBpAHMAdAB1AG4AZwBzAHMAdAB1AG4AZABlAG4AIAB1AG4AZAAgAGQAZQByACAATABlAGkAcwB0AHUAbgBnAHMAbQBvAGQAdQBsAGUAIABlAHIAZgBvAGwAZwB0ACAAZAB1AHIAYwBoACAAZABlAG4AIABMAGUAaQBzAHQAdQBuAGcAcwB0AHIAXAB1ADIAMgA4AFwAJwBlADQAZwBlAHIAIABhAHUAZgAgAGQAZQByACAARwByAHUAbgBkAGwAYQBnAGUAIABHAGUAcwBhAG0AdABwAGwAYQBuAHYAZQByAGYAYQBoAHIAZQBuAHMALwAgAFQAZQBpAGwAaABhAGIAZQBwAGwAYQBuAHYAZQByAGYAYQBoAHIAZQBuAHMALgB9AFwAZgAyAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBqAFwAaAB5AHAAaABwAGEAcgAwAFwAZgAyAFwAZgBzADIAMgBcAGMAZgAxAFwAcABhAHIAewBcAGwAaQBzAHQAdABlAHgAdABcAHAAYQByAGQAXABwAGwAYQBpAG4AIAAoADMAKQBcAHQAYQBiACAAfQBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABpAGwAdgBsADAAXABsAHMAMwBcAHEAagBcAGYAaQAtADUAMwA5AFwAbABpADUAMwA5AFwAbABpAG4ANQAzADkAXABoAHkAcABoAHAAYQByADAAXAB0AHgANQA0ADAAewBcAGYAMgBcAGYAcwAyADIAXABjAGYAMQAgAFYAZQByAFwAdQAyADIAOABcACcAZQA0AG4AZABlAHIAdABlACAAQgBlAGQAYQByAGYAZQAvAE0AZQBoAHIAYgBlAGQAYQByAGYAZQAsACAAZABpAGUAIABlAGkAbgBlACAAQQBuAHAAYQBzAHMAdQBuAGcAIABkAGUAcgAgAEwAZQBpAHMAdAB1AG4AZwBlAG4AIABlAHIAZgBvAHIAZABlAHIAbABpAGMAaAAgAG0AYQBjAGgAZQBuACwAIAB3AGUAcgBkAGUAbgAgAHYAbwBuACAAZABlAHIAIABsAGUAaQBzAHQAdQBuAGcAcwBiAGUAcgBlAGMAaAB0AGkAZwB0AGUAbgAgAFAAZQByAHMAbwBuACAAYgBlAGkAIABkAGUAbQAgAHoAdQBzAHQAXAB1ADIAMgA4AFwAJwBlADQAbgBkAGkAZwBlAG4AIABMAGUAaQBzAHQAdQBuAGcAcwB0AHIAXAB1ADIAMgA4AFwAJwBlADQAZwBlAHIAIABiAGUAYQBuAHQAcgBhAGcAdAAuACAARQBzACAAZgBpAG4AZABlAHQAIABkAGEAbgBuACAAZABhAHMAIABWAGUAcgBmAGEAaAByAGUAbgAgAGQAZQBzACAAagBlAHcAZQBpAGwAcwAgAHoAdQBzAHQAXAB1ADIAMgA4AFwAJwBlADQAbgBkAGkAZwBlAG4AIABMAGUAaQBzAHQAdQBuAGcAcwB0AHIAXAB1ADIAMgA4AFwAJwBlADQAZwBlAHIAcwAgAEEAbgB3AGUAbgBkAHUAbgBnAC4AfQBcAGYAMgBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGYAMQBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAH0A + + \ No newline at end of file diff --git a/ReportImp/SKFLeverkusen/BudgetnachweisAnhang.Designer.cs b/ReportImp/SKFLeverkusen/BudgetnachweisAnhang.Designer.cs new file mode 100644 index 000000000..013d31bd0 --- /dev/null +++ b/ReportImp/SKFLeverkusen/BudgetnachweisAnhang.Designer.cs @@ -0,0 +1,778 @@ +namespace SKFLeverkusen +{ + partial class BudgetnachweisAnhang + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary(); + DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary(); + DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary(); + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); + this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand(); + this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand(); + this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); + this.Detail1 = new DevExpress.XtraReports.UI.DetailBand(); + this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblStdsatz = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); + this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.xrTable8 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell(); + this.Einzahlungstextsichtbarkeitsformatierungsregel = new DevExpress.XtraReports.UI.FormattingRule(); + this.Auszahlungstextsichtbarkeitsformatierungsregel = new DevExpress.XtraReports.UI.FormattingRule(); + this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); + this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); + this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.Faktor = new DevExpress.XtraReports.UI.CalculatedField(); + this.StdSatz = new DevExpress.XtraReports.UI.CalculatedField(); + this.MonatsErtrag = new DevExpress.XtraReports.UI.CalculatedField(); + this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.FLSMonat = new DevExpress.XtraReports.UI.CalculatedField(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); + // + // Detail + // + this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable1}); + this.Detail.HeightF = 51.45833F; + this.Detail.Name = "Detail"; + this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrTable1 + // + this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTable1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 11.45833F); + this.xrTable1.Name = "xrTable1"; + this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow1}); + this.xrTable1.SizeF = new System.Drawing.SizeF(558.5417F, 40F); + this.xrTable1.StylePriority.UseBorders = false; + this.xrTable1.StylePriority.UseFont = false; + this.xrTable1.StylePriority.UseTextAlignment = false; + this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + // + // xrTableRow1 + // + this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell22, + this.xrTableCell14, + this.xrTableCell7, + this.xrTableCell21, + this.xrTableCell1, + this.xrTableCell2, + this.xrTableCell4}); + this.xrTableRow1.Name = "xrTableRow1"; + this.xrTableRow1.StylePriority.UseBorders = false; + this.xrTableRow1.Weight = 0.95999988281251425D; + // + // xrTableCell22 + // + this.xrTableCell22.Borders = DevExpress.XtraPrinting.BorderSide.Top; + this.xrTableCell22.Name = "xrTableCell22"; + this.xrTableCell22.StylePriority.UseBorders = false; + this.xrTableCell22.StylePriority.UsePadding = false; + this.xrTableCell22.StylePriority.UseTextAlignment = false; + this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell22.Weight = 0.0092307780339168644D; + // + // xrTableCell14 + // + this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell14.CanGrow = false; + this.xrTableCell14.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell14.Name = "xrTableCell14"; + this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); + this.xrTableCell14.StylePriority.UseBorders = false; + this.xrTableCell14.StylePriority.UseFont = false; + this.xrTableCell14.StylePriority.UsePadding = false; + this.xrTableCell14.StylePriority.UseTextAlignment = false; + this.xrTableCell14.Text = "Abrechnungsmonat"; + this.xrTableCell14.Weight = 0.9003848208233981D; + // + // xrTableCell7 + // + this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell7.CanGrow = false; + this.xrTableCell7.Multiline = true; + this.xrTableCell7.Name = "xrTableCell7"; + this.xrTableCell7.StylePriority.UseBorders = false; + this.xrTableCell7.StylePriority.UseTextAlignment = false; + this.xrTableCell7.Text = "FLS"; + this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell7.Weight = 0.3298077025439492D; + // + // xrTableCell21 + // + this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell21.CanGrow = false; + this.xrTableCell21.Name = "xrTableCell21"; + this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell21.StylePriority.UseBorders = false; + this.xrTableCell21.StylePriority.UsePadding = false; + this.xrTableCell21.StylePriority.UseTextAlignment = false; + this.xrTableCell21.Text = "Minuten"; + this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell21.Weight = 0.27692309888153993D; + // + // xrTableCell1 + // + this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell1.Name = "xrTableCell1"; + this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell1.StylePriority.UseBorders = false; + this.xrTableCell1.StylePriority.UsePadding = false; + this.xrTableCell1.StylePriority.UseTextAlignment = false; + this.xrTableCell1.Text = "Faktor"; + this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell1.Weight = 0.27692311648783696D; + // + // xrTableCell2 + // + this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell2.Name = "xrTableCell2"; + this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell2.StylePriority.UseBorders = false; + this.xrTableCell2.StylePriority.UsePadding = false; + this.xrTableCell2.StylePriority.UseTextAlignment = false; + this.xrTableCell2.Text = "Betrag/ FLS €"; + this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell2.Weight = 0.27692309888154D; + // + // xrTableCell4 + // + this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell4.Name = "xrTableCell4"; + this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell4.StylePriority.UseBorders = false; + this.xrTableCell4.StylePriority.UsePadding = false; + this.xrTableCell4.StylePriority.UseTextAlignment = false; + this.xrTableCell4.Text = "Gesamt"; + this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell4.Weight = 0.5076923722350255D; + // + // TopMargin + // + this.TopMargin.HeightF = 50F; + this.TopMargin.Name = "TopMargin"; + this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // BottomMargin + // + this.BottomMargin.HeightF = 52F; + this.BottomMargin.Name = "BottomMargin"; + this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // DetailReport + // + this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail1, + this.GroupFooter1}); + this.DetailReport.DataMember = "MonatsZeilen"; + this.DetailReport.DataSource = this.bindingSource1; + this.DetailReport.Level = 0; + this.DetailReport.Name = "DetailReport"; + // + // Detail1 + // + this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable2}); + this.Detail1.HeightF = 20.00001F; + this.Detail1.KeepTogetherWithDetailReports = true; + this.Detail1.Name = "Detail1"; + // + // xrTable2 + // + this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTable2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable2.Name = "xrTable2"; + this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow2}); + this.xrTable2.SizeF = new System.Drawing.SizeF(558.5417F, 20F); + this.xrTable2.StylePriority.UseBorders = false; + this.xrTable2.StylePriority.UseFont = false; + this.xrTable2.StylePriority.UseTextAlignment = false; + this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + // + // xrTableRow2 + // + this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell5, + this.xrTableCell8, + this.xrTableCell26, + this.xrTableCell28, + this.xrTableCell6, + this.lblStdsatz, + this.xrTableCell10}); + this.xrTableRow2.Name = "xrTableRow2"; + this.xrTableRow2.StylePriority.UseBorders = false; + this.xrTableRow2.Weight = 0.47999994140625712D; + // + // xrTableCell5 + // + this.xrTableCell5.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrTableCell5.Name = "xrTableCell5"; + this.xrTableCell5.StylePriority.UseBorders = false; + this.xrTableCell5.StylePriority.UsePadding = false; + this.xrTableCell5.StylePriority.UseTextAlignment = false; + this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell5.Weight = 0.0092307780339168644D; + // + // xrTableCell8 + // + this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.Monat", "Abrechnungsmonat {0:MM.yyyy}")}); + this.xrTableCell8.Name = "xrTableCell8"; + this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); + this.xrTableCell8.StylePriority.UseBorders = false; + this.xrTableCell8.StylePriority.UseFont = false; + this.xrTableCell8.StylePriority.UsePadding = false; + this.xrTableCell8.StylePriority.UseTextAlignment = false; + this.xrTableCell8.Weight = 0.87402849337455091D; + // + // xrTableCell26 + // + this.xrTableCell26.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.FLSMonat", "{0:n4}")}); + this.xrTableCell26.Multiline = true; + this.xrTableCell26.Name = "xrTableCell26"; + this.xrTableCell26.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell26.StylePriority.UseBorders = false; + this.xrTableCell26.StylePriority.UsePadding = false; + this.xrTableCell26.StylePriority.UseTextAlignment = false; + this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell26.Weight = 0.32025146439375407D; + // + // xrTableCell28 + // + this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.SummeMinuten", "{0:n0}")}); + this.xrTableCell28.Name = "xrTableCell28"; + this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell28.StylePriority.UseBorders = false; + this.xrTableCell28.StylePriority.UsePadding = false; + this.xrTableCell28.StylePriority.UseTextAlignment = false; + this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell28.Weight = 0.26889946048199748D; + // + // xrTableCell6 + // + this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Faktor", "{0:#.00}")}); + this.xrTableCell6.Name = "xrTableCell6"; + this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell6.StylePriority.UseBorders = false; + this.xrTableCell6.StylePriority.UsePadding = false; + this.xrTableCell6.StylePriority.UseTextAlignment = false; + this.xrTableCell6.Text = "xrTableCell6"; + this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell6.Weight = 0.26889906649892903D; + // + // lblStdsatz + // + this.lblStdsatz.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.lblStdsatz.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.Betrag", "{0:c2}")}); + this.lblStdsatz.Name = "lblStdsatz"; + this.lblStdsatz.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.lblStdsatz.StylePriority.UseBorders = false; + this.lblStdsatz.StylePriority.UsePadding = false; + this.lblStdsatz.StylePriority.UseTextAlignment = false; + this.lblStdsatz.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.lblStdsatz.Weight = 0.26889949875543667D; + // + // xrTableCell10 + // + this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.MonatsErtrag", "{0:c2}")}); + this.xrTableCell10.Name = "xrTableCell10"; + this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell10.StylePriority.UseBorders = false; + this.xrTableCell10.StylePriority.UsePadding = false; + this.xrTableCell10.StylePriority.UseTextAlignment = false; + this.xrTableCell10.Text = "xrTableCell10"; + this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell10.Weight = 0.49298173644907534D; + // + // GroupFooter1 + // + this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable8}); + this.GroupFooter1.HeightF = 42.00001F; + this.GroupFooter1.Name = "GroupFooter1"; + // + // xrTable8 + // + this.xrTable8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTable8.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTable8.LocationFloat = new DevExpress.Utils.PointFloat(2.059677F, 0F); + this.xrTable8.Name = "xrTable8"; + this.xrTable8.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow10}); + this.xrTable8.SizeF = new System.Drawing.SizeF(556.4821F, 20F); + this.xrTable8.StylePriority.UseBorders = false; + this.xrTable8.StylePriority.UseFont = false; + this.xrTable8.StylePriority.UseTextAlignment = false; + this.xrTable8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + // + // xrTableRow10 + // + this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell55, + this.xrTableCell56, + this.xrTableCell57, + this.xrTableCell3, + this.xrTableCell29, + this.xrTableCell58}); + this.xrTableRow10.Name = "xrTableRow10"; + this.xrTableRow10.StylePriority.UseBorders = false; + this.xrTableRow10.Weight = 0.47999994140625707D; + // + // xrTableCell55 + // + this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell55.Multiline = true; + this.xrTableCell55.Name = "xrTableCell55"; + this.xrTableCell55.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); + this.xrTableCell55.StylePriority.UseBorders = false; + this.xrTableCell55.StylePriority.UsePadding = false; + this.xrTableCell55.StylePriority.UseTextAlignment = false; + this.xrTableCell55.Text = "Summen:"; + this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell55.Weight = 0.90010927378660721D; + // + // xrTableCell56 + // + this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell56.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.FLSMonat")}); + this.xrTableCell56.Multiline = true; + this.xrTableCell56.Name = "xrTableCell56"; + this.xrTableCell56.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell56.StylePriority.UseBorders = false; + this.xrTableCell56.StylePriority.UsePadding = false; + this.xrTableCell56.StylePriority.UseTextAlignment = false; + xrSummary1.FormatString = "{0:n4}"; + xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report; + this.xrTableCell56.Summary = xrSummary1; + this.xrTableCell56.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell56.Weight = 0.32980756849030024D; + // + // xrTableCell57 + // + this.xrTableCell57.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell57.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.SummeMinuten")}); + this.xrTableCell57.Name = "xrTableCell57"; + this.xrTableCell57.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell57.StylePriority.UseBorders = false; + this.xrTableCell57.StylePriority.UsePadding = false; + this.xrTableCell57.StylePriority.UseTextAlignment = false; + xrSummary2.FormatString = "{0:n0}"; + xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Report; + this.xrTableCell57.Summary = xrSummary2; + this.xrTableCell57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell57.Weight = 0.276922892536945D; + // + // xrTableCell29 + // + this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell29.Name = "xrTableCell29"; + this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell29.StylePriority.UseBorders = false; + this.xrTableCell29.StylePriority.UsePadding = false; + this.xrTableCell29.StylePriority.UseTextAlignment = false; + this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell29.Weight = 0.27692333019764315D; + // + // xrTableCell58 + // + this.xrTableCell58.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell58.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.MonatsErtrag")}); + this.xrTableCell58.Name = "xrTableCell58"; + this.xrTableCell58.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell58.StylePriority.UseBorders = false; + this.xrTableCell58.StylePriority.UsePadding = false; + this.xrTableCell58.StylePriority.UseTextAlignment = false; + xrSummary3.FormatString = "{0:c2}"; + xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Report; + this.xrTableCell58.Summary = xrSummary3; + this.xrTableCell58.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell58.Weight = 0.50769228584840431D; + // + // Einzahlungstextsichtbarkeitsformatierungsregel + // + this.Einzahlungstextsichtbarkeitsformatierungsregel.Condition = "[Einzahlung] == 0"; + this.Einzahlungstextsichtbarkeitsformatierungsregel.DataMember = "Transaktionen"; + this.Einzahlungstextsichtbarkeitsformatierungsregel.Formatting.ForeColor = System.Drawing.Color.Transparent; + this.Einzahlungstextsichtbarkeitsformatierungsregel.Name = "Einzahlungstextsichtbarkeitsformatierungsregel"; + // + // Auszahlungstextsichtbarkeitsformatierungsregel + // + this.Auszahlungstextsichtbarkeitsformatierungsregel.Condition = "[Auszahlung] == 0"; + this.Auszahlungstextsichtbarkeitsformatierungsregel.DataMember = "Transaktionen"; + this.Auszahlungstextsichtbarkeitsformatierungsregel.Formatting.ForeColor = System.Drawing.Color.Transparent; + this.Auszahlungstextsichtbarkeitsformatierungsregel.Name = "Auszahlungstextsichtbarkeitsformatierungsregel"; + // + // xrTable3 + // + this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(1.589457E-05F, 0F); + this.xrTable3.Name = "xrTable3"; + this.xrTable3.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); + this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow3, + this.xrTableRow4}); + this.xrTable3.SizeF = new System.Drawing.SizeF(689.9999F, 40F); + this.xrTable3.StylePriority.UseBorders = false; + this.xrTable3.StylePriority.UseFont = false; + this.xrTable3.StylePriority.UsePadding = false; + this.xrTable3.StylePriority.UseTextAlignment = false; + this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + // + // xrTableRow3 + // + this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell11, + this.xrTableCell13, + this.xrTableCell15}); + this.xrTableRow3.Name = "xrTableRow3"; + this.xrTableRow3.StylePriority.UseBorders = false; + this.xrTableRow3.Weight = 0.47999994140625712D; + // + // xrTableCell11 + // + this.xrTableCell11.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell11.Name = "xrTableCell11"; + this.xrTableCell11.StylePriority.UseBorders = false; + this.xrTableCell11.StylePriority.UseFont = false; + this.xrTableCell11.StylePriority.UseTextAlignment = false; + this.xrTableCell11.Text = "Einzelaufstellung Ambulant betreutes Wohnen"; + this.xrTableCell11.Weight = 1.5721150884979207D; + // + // xrTableCell13 + // + this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell13.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell13.Multiline = true; + this.xrTableCell13.Name = "xrTableCell13"; + this.xrTableCell13.StylePriority.UseBorders = false; + this.xrTableCell13.StylePriority.UseFont = false; + this.xrTableCell13.StylePriority.UsePadding = false; + this.xrTableCell13.StylePriority.UseTextAlignment = false; + this.xrTableCell13.Text = "[CustomerDC.FirstName] [CustomerDC.LastName]"; + this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell13.Weight = 0.9557702145102982D; + // + // xrTableCell15 + // + this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "SettlementDC.CustomerReferenceNumber", "AZ: {0}")}); + this.xrTableCell15.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell15.Name = "xrTableCell15"; + this.xrTableCell15.StylePriority.UseBorders = false; + this.xrTableCell15.StylePriority.UseFont = false; + this.xrTableCell15.StylePriority.UsePadding = false; + this.xrTableCell15.StylePriority.UseTextAlignment = false; + this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell15.Weight = 0.65672937735536285D; + // + // xrTableRow4 + // + this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell16, + this.xrTableCell17, + this.xrTableCell18, + this.xrTableCell19, + this.xrTableCell20, + this.xrTableCell12}); + this.xrTableRow4.Name = "xrTableRow4"; + this.xrTableRow4.Weight = 0.479999941406257D; + // + // xrTableCell16 + // + this.xrTableCell16.Name = "xrTableCell16"; + this.xrTableCell16.StylePriority.UseBorders = false; + this.xrTableCell16.StylePriority.UseTextAlignment = false; + this.xrTableCell16.Text = "Bewilligungszeitraum:"; + this.xrTableCell16.Weight = 0.71538460364708545D; + // + // xrTableCell17 + // + this.xrTableCell17.Name = "xrTableCell17"; + this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.xrTableCell17.StylePriority.UseBorders = false; + this.xrTableCell17.StylePriority.UsePadding = false; + this.xrTableCell17.StylePriority.UseTextAlignment = false; + this.xrTableCell17.Text = "von"; + this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell17.Weight = 0.34615383441631609D; + // + // xrTableCell18 + // + this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "BewilligtStart", "{0:dd.MM.yyyy}")}); + this.xrTableCell18.Name = "xrTableCell18"; + this.xrTableCell18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 3, 2, 2, 100F); + this.xrTableCell18.StylePriority.UseBorders = false; + this.xrTableCell18.StylePriority.UsePadding = false; + this.xrTableCell18.StylePriority.UseTextAlignment = false; + this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell18.Weight = 0.346153816810021D; + // + // xrTableCell19 + // + this.xrTableCell19.Name = "xrTableCell19"; + this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.xrTableCell19.StylePriority.UseBorders = false; + this.xrTableCell19.StylePriority.UsePadding = false; + this.xrTableCell19.StylePriority.UseTextAlignment = false; + this.xrTableCell19.Text = "bis"; + this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell19.Weight = 0.23076920652868022D; + // + // xrTableCell20 + // + this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "BewilligtEnde", "{0:dd.MM.yyyy}")}); + this.xrTableCell20.Name = "xrTableCell20"; + this.xrTableCell20.StylePriority.UseBorders = false; + this.xrTableCell20.StylePriority.UsePadding = false; + this.xrTableCell20.StylePriority.UseTextAlignment = false; + this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell20.Weight = 0.34615381681002255D; + // + // xrTableCell12 + // + this.xrTableCell12.Name = "xrTableCell12"; + this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 3, 2, 2, 100F); + this.xrTableCell12.StylePriority.UsePadding = false; + this.xrTableCell12.StylePriority.UseTextAlignment = false; + this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell12.Weight = 1.1999994021514564D; + // + // ReportHeader + // + this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable3}); + this.ReportHeader.HeightF = 40.41665F; + this.ReportHeader.Name = "ReportHeader"; + // + // bindingSource1 + // + this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.BudgetnachweisAnhangRO); + // + // Faktor + // + this.Faktor.Expression = "1+[RateFactor]/100"; + this.Faktor.Name = "Faktor"; + // + // StdSatz + // + this.StdSatz.DataMember = "MonatsZeilen"; + this.StdSatz.Expression = "(ToDecimal([Entgeltzeitraum]/100))"; + this.StdSatz.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal; + this.StdSatz.Name = "StdSatz"; + // + // MonatsErtrag + // + this.MonatsErtrag.DataMember = "MonatsZeilen"; + this.MonatsErtrag.Expression = "Round([SummeMinuten]/60*[Betrag]*1.2, 2)"; + this.MonatsErtrag.Name = "MonatsErtrag"; + // + // xrTableCell3 + // + this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell3.Name = "xrTableCell3"; + this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell3.StylePriority.UseBorders = false; + this.xrTableCell3.StylePriority.UsePadding = false; + this.xrTableCell3.StylePriority.UseTextAlignment = false; + this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell3.Weight = 0.27692317174100395D; + // + // FLSMonat + // + this.FLSMonat.DataMember = "MonatsZeilen"; + this.FLSMonat.Expression = "[SummeMinuten]/60"; + this.FLSMonat.Name = "FLSMonat"; + // + // BudgetnachweisAnhang + // + this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail, + this.TopMargin, + this.BottomMargin, + this.DetailReport, + this.ReportHeader}); + this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] { + this.Faktor, + this.StdSatz, + this.MonatsErtrag, + this.FLSMonat}); + this.DataSource = this.bindingSource1; + this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { + this.Einzahlungstextsichtbarkeitsformatierungsregel, + this.Auszahlungstextsichtbarkeitsformatierungsregel}); + this.Margins = new System.Drawing.Printing.Margins(70, 65, 50, 52); + this.PageHeight = 1169; + this.PageWidth = 827; + this.PaperKind = System.Drawing.Printing.PaperKind.A4; + this.Version = "17.1"; + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + + } + + #endregion + + private DevExpress.XtraReports.UI.DetailBand Detail; + private DevExpress.XtraReports.UI.TopMarginBand TopMargin; + private DevExpress.XtraReports.UI.BottomMarginBand BottomMargin; + private DevExpress.XtraReports.UI.DetailReportBand DetailReport; + private DevExpress.XtraReports.UI.DetailBand Detail1; + private System.Windows.Forms.BindingSource bindingSource1; + private DevExpress.XtraReports.UI.XRTable xrTable1; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow1; + private DevExpress.XtraReports.UI.FormattingRule Einzahlungstextsichtbarkeitsformatierungsregel; + private DevExpress.XtraReports.UI.FormattingRule Auszahlungstextsichtbarkeitsformatierungsregel; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell7; + private DevExpress.XtraReports.UI.XRTable xrTable3; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow3; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell11; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell13; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell15; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow4; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell16; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell17; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell18; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell19; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell20; + private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell14; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell12; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell22; + private DevExpress.XtraReports.UI.XRTable xrTable2; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell5; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell8; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell26; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell28; + private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell21; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell4; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell6; + private DevExpress.XtraReports.UI.XRTableCell lblStdsatz; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell10; + private DevExpress.XtraReports.UI.XRTable xrTable8; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow10; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell55; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell56; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell57; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell29; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell58; + private DevExpress.XtraReports.UI.CalculatedField Faktor; + private DevExpress.XtraReports.UI.CalculatedField StdSatz; + private DevExpress.XtraReports.UI.CalculatedField MonatsErtrag; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell3; + private DevExpress.XtraReports.UI.CalculatedField FLSMonat; + } +} diff --git a/ReportImp/SKFLeverkusen/BudgetnachweisAnhang.cs b/ReportImp/SKFLeverkusen/BudgetnachweisAnhang.cs new file mode 100644 index 000000000..30c62d50e --- /dev/null +++ b/ReportImp/SKFLeverkusen/BudgetnachweisAnhang.cs @@ -0,0 +1,36 @@ +using System; +using System.Linq; +using BeWo.Report; +using BeWo.Report.ReportObjects; + +namespace SKFLeverkusen +{ + public partial class BudgetnachweisAnhang : DevExpress.XtraReports.UI.XtraReport, IBeWoReport + { + public BudgetnachweisAnhang() + { + InitializeComponent(); + } + + public void SetReportDataSource(BudgetnachweisAnhangRO pRO) + { + if (!String.IsNullOrEmpty(pRO.CustomerDC.LastName)) + { + //pRO.CustomerDC.LastName = pRO.CustomerDC.LastName.Replace("/", "").Replace("LWL Psych", "").Replace("LWL Sucht", "").Trim(); + + + } + + foreach (var mz in pRO.MonatsZeilen) + { + foreach (var ez in pRO.Entgeltzeitraeume) + { + if (ez.Index == mz.Entgeltzeitraum) + mz.Betrag = ez.CostRatePeriod.CostRateValue; + } + } + + bindingSource1.DataSource = pRO; + } + } +} diff --git a/ReportImp/SKFLeverkusen/BudgetnachweisAnhang.resx b/ReportImp/SKFLeverkusen/BudgetnachweisAnhang.resx new file mode 100644 index 000000000..76cdda25e --- /dev/null +++ b/ReportImp/SKFLeverkusen/BudgetnachweisAnhang.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file diff --git a/ReportImp/SKFLeverkusen/CustomReportCreator.cs b/ReportImp/SKFLeverkusen/CustomReportCreator.cs new file mode 100644 index 000000000..42c6b620a --- /dev/null +++ b/ReportImp/SKFLeverkusen/CustomReportCreator.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using BeWo.Data.Access; +using BeWo.Data.Entities; +using BeWo.Report; +using BeWo.Report.ReportObjects; +using DevExpress.XtraReports.Design; +using DevExpress.XtraReports.UI; + +namespace SKFLeverkusen +{ + public class CustomReportCreator : DefaultReportCreator + { + public override XtraReport CreateSettlementReport(string dcId, long? invoiceBaseOid) + { + return base.CreateSettlementReport(dcId, invoiceBaseOid, true); + } + } +} diff --git a/ReportImp/SKFLeverkusen/Properties/AssemblyInfo.cs b/ReportImp/SKFLeverkusen/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..930888dd6 --- /dev/null +++ b/ReportImp/SKFLeverkusen/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die einer Assembly zugeordnet sind. +[assembly: AssemblyTitle("KundeXyz")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("KundeXyz")] +[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly +// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von +// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("c1fed668-adb9-47e0-b589-1389618e1b6e")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, +// indem Sie "*" wie unten gezeigt eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/ReportImp/SKFLeverkusen/Properties/licenses.licx b/ReportImp/SKFLeverkusen/Properties/licenses.licx new file mode 100644 index 000000000..c7fd819d5 --- /dev/null +++ b/ReportImp/SKFLeverkusen/Properties/licenses.licx @@ -0,0 +1 @@ +DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/SKFLeverkusen/SKFLeverkusen.csproj b/ReportImp/SKFLeverkusen/SKFLeverkusen.csproj new file mode 100644 index 000000000..df5c4c04a --- /dev/null +++ b/ReportImp/SKFLeverkusen/SKFLeverkusen.csproj @@ -0,0 +1,105 @@ + + + + + Debug + AnyCPU + {E9D06828-4CD6-4541-AFCF-282B681312AE} + Library + Properties + SKFLeverkusen + 7396826106_Reports + v4.7.2 + 512 + + + + true + full + false + ..\..\Host\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + ..\..\Host\bin\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + Component + + + BudgetnachweisAnhang.cs + + + + + Component + + + Betreuungsvertrag.cs + + + Component + + + SettlementReport.cs + + + + + {B0D73E3D-4AE7-4024-93A6-DB1F46D7CCEE} + Data + + + {40d8b312-ea64-49e3-a31a-5e57ed4d5654} + Report + + + {094331c3-ecee-4c89-bbfd-4c9ded89f0ef} + Service + + + {2f50b83d-a3f0-4ec4-979a-3f9b7e3d8ed4} + Shared + + + + + BudgetnachweisAnhang.cs + Designer + + + + Betreuungsvertrag.cs + + + SettlementReport.cs + Designer + + + + \ No newline at end of file diff --git a/ReportImp/SKFLeverkusen/SettlementReport.Designer.cs b/ReportImp/SKFLeverkusen/SettlementReport.Designer.cs new file mode 100644 index 000000000..47d20013d --- /dev/null +++ b/ReportImp/SKFLeverkusen/SettlementReport.Designer.cs @@ -0,0 +1,1072 @@ +namespace SKFLeverkusen.Alt +{ + partial class Spitzabrechnung + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); + this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); + this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); + this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule(); + this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell(); + this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblAnrede = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); + this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); + this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow20 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow21 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow22 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow24 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); + this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); + this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); + this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); + this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); + this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); + this.Detail1 = new DevExpress.XtraReports.UI.DetailBand(); + this.xrTable5 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow15 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell(); + this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.xrTable4 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow30 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow31 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow32 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow33 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow34 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow35 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow36 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); + // + // Detail + // + this.Detail.HeightF = 0F; + this.Detail.Name = "Detail"; + this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // ReportHeader + // + this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel9}); + this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F); + this.ReportHeader.HeightF = 120F; + this.ReportHeader.Name = "ReportHeader"; + this.ReportHeader.StylePriority.UseFont = false; + // + // xrLabel9 + // + this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(187.5F, 50F); + this.xrLabel9.Multiline = true; + this.xrLabel9.Name = "xrLabel9"; + this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel9.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel9.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel9.StylePriority.UseFont = false; + this.xrLabel9.Text = "\r\n"; + // + // xrLabel8 + // + this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")}); + this.xrLabel8.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(509.0416F, 158.5833F); + this.xrLabel8.Name = "xrLabel8"; + this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel8.SizeF = new System.Drawing.SizeF(140.9585F, 23F); + this.xrLabel8.StylePriority.UseFont = false; + this.xrLabel8.StylePriority.UseTextAlignment = false; + this.xrLabel8.Text = "xrLabel8"; + this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + // + // xrTable1 + // + this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable1.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 362.8333F); + this.xrTable1.Name = "xrTable1"; + this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow9, + this.xrTableRow10, + this.xrTableRow11, + this.rowErbrachteLeistung}); + this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 68F); + this.xrTable1.StylePriority.UseBorderColor = false; + this.xrTable1.StylePriority.UseFont = false; + // + // xrTableRow9 + // + this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell19, + this.xrTableCell6}); + this.xrTableRow9.Name = "xrTableRow9"; + this.xrTableRow9.Weight = 0.085D; + // + // xrTableCell19 + // + this.xrTableCell19.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell19.Name = "xrTableCell19"; + this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell19.StylePriority.UseBorderColor = false; + this.xrTableCell19.StylePriority.UseBorders = false; + this.xrTableCell19.StylePriority.UseFont = false; + this.xrTableCell19.Text = "Bewilligte Fachleistungsstunden (FLS) gesamt:"; + this.xrTableCell19.Weight = 0.78314100999098568D; + // + // xrTableCell6 + // + this.xrTableCell6.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell6.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold); + this.xrTableCell6.Name = "xrTableCell6"; + this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell6.StylePriority.UseBorderColor = false; + this.xrTableCell6.StylePriority.UseBorders = false; + this.xrTableCell6.StylePriority.UseFont = false; + this.xrTableCell6.StylePriority.UseTextAlignment = false; + this.xrTableCell6.Text = "[ApprovedFLS]"; + this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell6.Weight = 0.21685899000901443D; + // + // xrTableRow10 + // + this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell20, + this.xrTableCell7}); + this.xrTableRow10.FormattingRules.Add(this.ruleRateFactorNull); + this.xrTableRow10.Name = "xrTableRow10"; + this.xrTableRow10.Weight = 0.085D; + // + // xrTableCell20 + // + this.xrTableCell20.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell20.FormattingRules.Add(this.ruleRateFactorNull); + this.xrTableCell20.Name = "xrTableCell20"; + this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell20.StylePriority.UseBorderColor = false; + this.xrTableCell20.StylePriority.UseBorders = false; + this.xrTableCell20.StylePriority.UseFont = false; + this.xrTableCell20.Text = "- zzgl. Faktor [RateFactorText2]:"; + this.xrTableCell20.Weight = 0.78314100999098568D; + // + // ruleRateFactorNull + // + this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?"; + this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False; + this.ruleRateFactorNull.Name = "ruleRateFactorNull"; + // + // xrTableCell7 + // + this.xrTableCell7.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell7.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold); + this.xrTableCell7.FormattingRules.Add(this.ruleRateFactorNull); + this.xrTableCell7.Name = "xrTableCell7"; + this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell7.StylePriority.UseBorderColor = false; + this.xrTableCell7.StylePriority.UseBorders = false; + this.xrTableCell7.StylePriority.UseFont = false; + this.xrTableCell7.StylePriority.UseTextAlignment = false; + this.xrTableCell7.Text = "[ApprovedFLSWithFactor]"; + this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell7.Weight = 0.21685899000901443D; + // + // xrTableRow11 + // + this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell21}); + this.xrTableRow11.Name = "xrTableRow11"; + this.xrTableRow11.Weight = 0.085D; + // + // xrTableCell21 + // + this.xrTableCell21.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell21.Name = "xrTableCell21"; + this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell21.StylePriority.UseBorderColor = false; + this.xrTableCell21.StylePriority.UseBorders = false; + this.xrTableCell21.Weight = 1D; + // + // rowErbrachteLeistung + // + this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell22}); + this.rowErbrachteLeistung.Name = "rowErbrachteLeistung"; + this.rowErbrachteLeistung.Weight = 0.085D; + // + // xrTableCell22 + // + this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell22.Name = "xrTableCell22"; + this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell22.StylePriority.UseBorderColor = false; + this.xrTableCell22.StylePriority.UseBorders = false; + this.xrTableCell22.StylePriority.UseFont = false; + this.xrTableCell22.Text = "Erbrachte Leistungen:"; + this.xrTableCell22.Weight = 1D; + // + // xrLabel6 + // + this.xrLabel6.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 312.8333F); + this.xrLabel6.Multiline = true; + this.xrLabel6.Name = "xrLabel6"; + this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel6.SizeF = new System.Drawing.SizeF(642F, 39.91666F); + this.xrLabel6.StylePriority.UseFont = false; + this.xrLabel6.Text = "für die aufgeführte Hilfe wurden im obigen Zeitraum die folgenden Leistungen erbr" + + "acht.\r\nDen genauen Leistungsnachweis entnehmen Sie bitte der Anlage."; + // + // lblAnrede + // + this.lblAnrede.Font = new System.Drawing.Font("Arial", 11.25F); + this.lblAnrede.LocationFloat = new DevExpress.Utils.PointFloat(0F, 279.8333F); + this.lblAnrede.Name = "lblAnrede"; + this.lblAnrede.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblAnrede.SizeF = new System.Drawing.SizeF(317F, 17F); + this.lblAnrede.StylePriority.UseFont = false; + this.lblAnrede.Text = "Sehr geehrte Damen und Herren,"; + // + // xrLabel4 + // + this.xrLabel4.BackColor = System.Drawing.Color.Transparent; + this.xrLabel4.CanShrink = true; + this.xrLabel4.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 225F); + this.xrLabel4.Multiline = true; + this.xrLabel4.Name = "xrLabel4"; + this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrLabel4.StylePriority.UseBackColor = false; + this.xrLabel4.StylePriority.UseFont = false; + this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]"; + this.xrLabel4.WordWrap = false; + // + // xrLabel3 + // + this.xrLabel3.BackColor = System.Drawing.Color.Transparent; + this.xrLabel3.CanShrink = true; + this.xrLabel3.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 209F); + this.xrLabel3.Name = "xrLabel3"; + this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 16F); + this.xrLabel3.StylePriority.UseBackColor = false; + this.xrLabel3.StylePriority.UseFont = false; + this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerName]"; + this.xrLabel3.WordWrap = false; + // + // RecipientPostCodeAndTown + // + this.RecipientPostCodeAndTown.CanShrink = true; + this.RecipientPostCodeAndTown.Font = new System.Drawing.Font("Arial", 11.25F); + this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F); + this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown"; + this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F); + this.RecipientPostCodeAndTown.StylePriority.UseFont = false; + this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]"; + // + // xrLabel_RecipientStreet + // + this.xrLabel_RecipientStreet.CanShrink = true; + this.xrLabel_RecipientStreet.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F); + this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet"; + this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel_RecipientStreet.StylePriority.UseFont = false; + this.xrLabel_RecipientStreet.Text = "[RecipientStreet]"; + // + // xrLabel_RecipientDivision + // + this.xrLabel_RecipientDivision.CanShrink = true; + this.xrLabel_RecipientDivision.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F); + this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision"; + this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel_RecipientDivision.StylePriority.UseFont = false; + this.xrLabel_RecipientDivision.Text = "[RecipientDivision]"; + // + // xrLabel_RecipientContactPerson + // + this.xrLabel_RecipientContactPerson.CanShrink = true; + this.xrLabel_RecipientContactPerson.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F); + this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson"; + this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false; + this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]"; + // + // xrLabel1 + // + this.xrLabel1.CanShrink = true; + this.xrLabel1.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrLabel1.Name = "xrLabel1"; + this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel1.StylePriority.UseFont = false; + this.xrLabel1.Text = "[RecipientOrganisation]"; + // + // ReportFooter + // + this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel2, + this.xrLabel10, + this.xrTable3, + this.xrLabel12, + this.xrLabel11}); + this.ReportFooter.Font = new System.Drawing.Font("Verdana", 10F); + this.ReportFooter.HeightF = 226F; + this.ReportFooter.KeepTogether = true; + this.ReportFooter.Name = "ReportFooter"; + this.ReportFooter.StylePriority.UseFont = false; + // + // xrLabel2 + // + this.xrLabel2.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0.0001907349F, 187.125F); + this.xrLabel2.Name = "xrLabel2"; + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel2.SizeF = new System.Drawing.SizeF(225F, 17F); + this.xrLabel2.StylePriority.UseFont = false; + this.xrLabel2.Text = "Stellvertredende Geschäftsführerin"; + // + // xrLabel10 + // + this.xrLabel10.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 91.99995F); + this.xrLabel10.Multiline = true; + this.xrLabel10.Name = "xrLabel10"; + this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel10.SizeF = new System.Drawing.SizeF(175F, 42.00001F); + this.xrLabel10.StylePriority.UseFont = false; + this.xrLabel10.Text = "Mit freundlichen Grüßen\r\ni.A."; + // + // xrTable3 + // + this.xrTable3.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 10.00001F); + this.xrTable3.Name = "xrTable3"; + this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow20, + this.xrTableRow21, + this.xrTableRow22, + this.xrTableRow23, + this.xrTableRow24}); + this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 68F); + this.xrTable3.StylePriority.UseFont = false; + // + // xrTableRow20 + // + this.xrTableRow20.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell16}); + this.xrTableRow20.Name = "xrTableRow20"; + this.xrTableRow20.Weight = 0.38095238095238093D; + // + // xrTableCell16 + // + this.xrTableCell16.CanShrink = true; + this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")}); + this.xrTableCell16.Name = "xrTableCell16"; + this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell16.StylePriority.UsePadding = false; + this.xrTableCell16.Text = "xrTableCell1"; + this.xrTableCell16.Weight = 3D; + // + // xrTableRow21 + // + this.xrTableRow21.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell18}); + this.xrTableRow21.Name = "xrTableRow21"; + this.xrTableRow21.Weight = 0.23809523809523808D; + // + // xrTableCell18 + // + this.xrTableCell18.Name = "xrTableCell18"; + this.xrTableCell18.Weight = 3D; + // + // xrTableRow22 + // + this.xrTableRow22.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell29}); + this.xrTableRow22.Name = "xrTableRow22"; + this.xrTableRow22.Weight = 0.38095238095238088D; + // + // xrTableCell29 + // + this.xrTableCell29.CanShrink = true; + this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "AbsenceTimes")}); + this.xrTableCell29.Name = "xrTableCell29"; + this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell29.StylePriority.UsePadding = false; + this.xrTableCell29.Text = "xrTableCell4"; + this.xrTableCell29.Weight = 3D; + // + // xrTableRow23 + // + this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell30}); + this.xrTableRow23.Name = "xrTableRow23"; + this.xrTableRow23.Weight = 0.23809523809523803D; + // + // xrTableCell30 + // + this.xrTableCell30.Name = "xrTableCell30"; + this.xrTableCell30.Weight = 3D; + // + // xrTableRow24 + // + this.xrTableRow24.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell31}); + this.xrTableRow24.Name = "xrTableRow24"; + this.xrTableRow24.Weight = 0.38095238095238093D; + // + // xrTableCell31 + // + this.xrTableCell31.CanShrink = true; + this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "FinalSentence")}); + this.xrTableCell31.Name = "xrTableCell31"; + this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell31.StylePriority.UsePadding = false; + this.xrTableCell31.Text = "xrTableCell8"; + this.xrTableCell31.Weight = 3D; + // + // xrLabel12 + // + this.xrLabel12.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(9.536743E-05F, 170.1251F); + this.xrLabel12.Name = "xrLabel12"; + this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel12.SizeF = new System.Drawing.SizeF(225F, 17F); + this.xrLabel12.StylePriority.UseFont = false; + this.xrLabel12.Text = "Mechthild Alberts"; + // + // xrLabel11 + // + this.xrLabel11.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(582.9999F, 170.1251F); + this.xrLabel11.Name = "xrLabel11"; + this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel11.SizeF = new System.Drawing.SizeF(67F, 17F); + this.xrLabel11.StylePriority.UseFont = false; + this.xrLabel11.StylePriority.UseTextAlignment = false; + this.xrLabel11.Text = "Anlage"; + this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + // + // topMarginBand1 + // + this.topMarginBand1.HeightF = 100F; + this.topMarginBand1.Name = "topMarginBand1"; + // + // bottomMarginBand1 + // + this.bottomMarginBand1.HeightF = 74.00004F; + this.bottomMarginBand1.Name = "bottomMarginBand1"; + // + // GroupHeader1 + // + this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel16, + this.xrLabel17, + this.xrLabel15, + this.xrLabel14, + this.xrLabel13, + this.xrLabel7, + this.xrLabel1, + this.xrLabel_RecipientContactPerson, + this.xrLabel_RecipientDivision, + this.xrLabel_RecipientStreet, + this.RecipientPostCodeAndTown, + this.xrLabel3, + this.xrLabel4, + this.lblAnrede, + this.xrLabel6, + this.xrTable1, + this.xrLabel8}); + this.GroupHeader1.Font = new System.Drawing.Font("Verdana", 10F); + this.GroupHeader1.HeightF = 430.8333F; + this.GroupHeader1.Name = "GroupHeader1"; + this.GroupHeader1.StylePriority.UseFont = false; + // + // xrLabel16 + // + this.xrLabel16.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(260.1874F, 146F); + this.xrLabel16.Name = "xrLabel16"; + this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel16.SizeF = new System.Drawing.SizeF(140.9584F, 12.58336F); + this.xrLabel16.StylePriority.UseFont = false; + this.xrLabel16.StylePriority.UseTextAlignment = false; + this.xrLabel16.Text = "Geschäftszeichen"; + this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + // + // xrLabel17 + // + this.xrLabel17.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(260.1874F, 158.5833F); + this.xrLabel17.Name = "xrLabel17"; + this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel17.SizeF = new System.Drawing.SizeF(140.9585F, 23F); + this.xrLabel17.StylePriority.UseFont = false; + this.xrLabel17.StylePriority.UseTextAlignment = false; + this.xrLabel17.Text = "220191"; + this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + // + // xrLabel15 + // + this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceNumber")}); + this.xrLabel15.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 158.5833F); + this.xrLabel15.Name = "xrLabel15"; + this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel15.SizeF = new System.Drawing.SizeF(140.9585F, 23F); + this.xrLabel15.StylePriority.UseFont = false; + this.xrLabel15.StylePriority.UseTextAlignment = false; + this.xrLabel15.Text = "xrLabel8"; + this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel14 + // + this.xrLabel14.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 146F); + this.xrLabel14.Name = "xrLabel14"; + this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel14.SizeF = new System.Drawing.SizeF(140.9584F, 12.58336F); + this.xrLabel14.StylePriority.UseFont = false; + this.xrLabel14.StylePriority.UseTextAlignment = false; + this.xrLabel14.Text = "Rechnungsnummer"; + this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel13 + // + this.xrLabel13.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(509.0417F, 146F); + this.xrLabel13.Name = "xrLabel13"; + this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel13.SizeF = new System.Drawing.SizeF(140.9584F, 12.58336F); + this.xrLabel13.StylePriority.UseFont = false; + this.xrLabel13.StylePriority.UseTextAlignment = false; + this.xrLabel13.Text = "Datum"; + this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + // + // xrLabel7 + // + this.xrLabel7.BackColor = System.Drawing.Color.Transparent; + this.xrLabel7.CanShrink = true; + this.xrLabel7.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold); + this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 242F); + this.xrLabel7.Multiline = true; + this.xrLabel7.Name = "xrLabel7"; + this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel7.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrLabel7.StylePriority.UseBackColor = false; + this.xrLabel7.StylePriority.UseFont = false; + this.xrLabel7.Text = "[AccountingPeriod]"; + this.xrLabel7.WordWrap = false; + // + // bindingSource1 + // + this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO); + // + // DetailReport + // + this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail1}); + this.DetailReport.DataMember = "InvoiceItems"; + this.DetailReport.DataSource = this.bindingSource1; + this.DetailReport.Level = 0; + this.DetailReport.Name = "DetailReport"; + // + // Detail1 + // + this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable5}); + this.Detail1.Font = new System.Drawing.Font("Verdana", 10F); + this.Detail1.HeightF = 17F; + this.Detail1.Name = "Detail1"; + this.Detail1.StylePriority.UseFont = false; + // + // xrTable5 + // + this.xrTable5.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable5.Name = "xrTable5"; + this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow15}); + this.xrTable5.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrTable5.StylePriority.UseBorderColor = false; + // + // xrTableRow15 + // + this.xrTableRow15.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell17, + this.xrTableCell23}); + this.xrTableRow15.Name = "xrTableRow15"; + this.xrTableRow15.Weight = 0.085D; + // + // xrTableCell17 + // + this.xrTableCell17.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell17.CanShrink = true; + this.xrTableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.ItemDescription")}); + this.xrTableCell17.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell17.Name = "xrTableCell17"; + this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell17.StylePriority.UseBorderColor = false; + this.xrTableCell17.StylePriority.UseBorders = false; + this.xrTableCell17.StylePriority.UseFont = false; + this.xrTableCell17.StylePriority.UsePadding = false; + this.xrTableCell17.Weight = 0.78314100999098546D; + // + // xrTableCell23 + // + this.xrTableCell23.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell23.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell23.CanShrink = true; + this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.GrossAmountTotal", "{0:c}")}); + this.xrTableCell23.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell23.Name = "xrTableCell23"; + this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell23.StylePriority.UseBorderColor = false; + this.xrTableCell23.StylePriority.UseBorders = false; + this.xrTableCell23.StylePriority.UseFont = false; + this.xrTableCell23.StylePriority.UsePadding = false; + this.xrTableCell23.StylePriority.UseTextAlignment = false; + this.xrTableCell23.Text = "xrTableCell23"; + this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell23.Weight = 0.21685899000901443D; + // + // GroupFooter1 + // + this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable4}); + this.GroupFooter1.Font = new System.Drawing.Font("Verdana", 10F); + this.GroupFooter1.HeightF = 132F; + this.GroupFooter1.Name = "GroupFooter1"; + this.GroupFooter1.StylePriority.UseFont = false; + // + // xrTable4 + // + this.xrTable4.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable4.Name = "xrTable4"; + this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow30, + this.xrTableRow31, + this.xrTableRow32, + this.xrTableRow33, + this.xrTableRow34, + this.xrTableRow35, + this.xrTableRow36}); + this.xrTable4.SizeF = new System.Drawing.SizeF(650F, 132F); + this.xrTable4.StylePriority.UseBorderColor = false; + // + // xrTableRow30 + // + this.xrTableRow30.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell48}); + this.xrTableRow30.Name = "xrTableRow30"; + this.xrTableRow30.Weight = 0.085D; + // + // xrTableCell48 + // + this.xrTableCell48.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell48.Name = "xrTableCell48"; + this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell48.StylePriority.UseBorderColor = false; + this.xrTableCell48.StylePriority.UseBorders = false; + this.xrTableCell48.Weight = 1D; + // + // xrTableRow31 + // + this.xrTableRow31.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell49, + this.xrTableCell50}); + this.xrTableRow31.Name = "xrTableRow31"; + this.xrTableRow31.Weight = 0.085D; + // + // xrTableCell49 + // + this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell49.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell49.Name = "xrTableCell49"; + this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell49.StylePriority.UseBorders = false; + this.xrTableCell49.StylePriority.UseFont = false; + this.xrTableCell49.StylePriority.UsePadding = false; + this.xrTableCell49.Text = "Gesamtforderung:"; + this.xrTableCell49.Weight = 0.78314100999098546D; + // + // xrTableCell50 + // + this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountRecordedFLSString")}); + this.xrTableCell50.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell50.Name = "xrTableCell50"; + this.xrTableCell50.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell50.StylePriority.UseBorders = false; + this.xrTableCell50.StylePriority.UseFont = false; + this.xrTableCell50.StylePriority.UsePadding = false; + this.xrTableCell50.StylePriority.UseTextAlignment = false; + this.xrTableCell50.Text = "[AmountRecordedFLSString]"; + this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell50.Weight = 0.21685899000901443D; + // + // xrTableRow32 + // + this.xrTableRow32.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell51}); + this.xrTableRow32.Name = "xrTableRow32"; + this.xrTableRow32.Weight = 0.085D; + // + // xrTableCell51 + // + this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell51.Name = "xrTableCell51"; + this.xrTableCell51.StylePriority.UseBorders = false; + this.xrTableCell51.Weight = 1D; + // + // xrTableRow33 + // + this.xrTableRow33.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell52, + this.xrTableCell53}); + this.xrTableRow33.Name = "xrTableRow33"; + this.xrTableRow33.Weight = 0.085D; + // + // xrTableCell52 + // + this.xrTableCell52.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell52.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell52.Name = "xrTableCell52"; + this.xrTableCell52.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell52.StylePriority.UseBorderColor = false; + this.xrTableCell52.StylePriority.UseBorders = false; + this.xrTableCell52.StylePriority.UseFont = false; + this.xrTableCell52.Text = "abzüglich der geleisteten Abschlagszahlung:"; + this.xrTableCell52.Weight = 0.78314100999098568D; + // + // xrTableCell53 + // + this.xrTableCell53.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell53.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell53.Name = "xrTableCell53"; + this.xrTableCell53.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell53.StylePriority.UseBorderColor = false; + this.xrTableCell53.StylePriority.UseBorders = false; + this.xrTableCell53.StylePriority.UseFont = false; + this.xrTableCell53.StylePriority.UseTextAlignment = false; + this.xrTableCell53.Text = "[AmountAdvancedPayments]"; + this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell53.Weight = 0.21685899000901443D; + // + // xrTableRow34 + // + this.xrTableRow34.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell54, + this.xrTableCell55}); + this.xrTableRow34.Name = "xrTableRow34"; + this.xrTableRow34.Weight = 0.085D; + // + // xrTableCell54 + // + this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell54.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell54.Name = "xrTableCell54"; + this.xrTableCell54.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell54.StylePriority.UseBorders = false; + this.xrTableCell54.StylePriority.UseFont = false; + this.xrTableCell54.StylePriority.UsePadding = false; + this.xrTableCell54.Text = "abzüglich Eigenanteil:"; + this.xrTableCell54.Weight = 0.78314100999098568D; + // + // xrTableCell55 + // + this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung", "{0:c}")}); + this.xrTableCell55.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell55.Name = "xrTableCell55"; + this.xrTableCell55.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell55.StylePriority.UseBorders = false; + this.xrTableCell55.StylePriority.UseFont = false; + this.xrTableCell55.StylePriority.UsePadding = false; + this.xrTableCell55.StylePriority.UseTextAlignment = false; + this.xrTableCell55.Text = "xrTableCell15"; + this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell55.Weight = 0.21685899000901443D; + // + // xrTableRow35 + // + this.xrTableRow35.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell56}); + this.xrTableRow35.Name = "xrTableRow35"; + this.xrTableRow35.Weight = 0.085D; + // + // xrTableCell56 + // + this.xrTableCell56.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell56.Name = "xrTableCell56"; + this.xrTableCell56.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell56.StylePriority.UseBorderColor = false; + this.xrTableCell56.StylePriority.UseBorders = false; + this.xrTableCell56.Weight = 1D; + // + // xrTableRow36 + // + this.xrTableRow36.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell57, + this.xrTableCell58}); + this.xrTableRow36.Name = "xrTableRow36"; + this.xrTableRow36.Weight = 0.15D; + // + // xrTableCell57 + // + this.xrTableCell57.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell57.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell57.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell57.Name = "xrTableCell57"; + this.xrTableCell57.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell57.StylePriority.UseBorderColor = false; + this.xrTableCell57.StylePriority.UseBorders = false; + this.xrTableCell57.StylePriority.UseFont = false; + this.xrTableCell57.Text = "Differenzbetrag:"; + this.xrTableCell57.Weight = 0.78314100999098568D; + // + // xrTableCell58 + // + this.xrTableCell58.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell58.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell58.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold); + this.xrTableCell58.Name = "xrTableCell58"; + this.xrTableCell58.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell58.StylePriority.UseBorderColor = false; + this.xrTableCell58.StylePriority.UseBorders = false; + this.xrTableCell58.StylePriority.UseFont = false; + this.xrTableCell58.StylePriority.UseTextAlignment = false; + this.xrTableCell58.Text = "[Claim]"; + this.xrTableCell58.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell58.Weight = 0.21685899000901443D; + // + // Spitzabrechnung + // + this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail, + this.ReportHeader, + this.ReportFooter, + this.topMarginBand1, + this.bottomMarginBand1, + this.GroupHeader1, + this.DetailReport, + this.GroupFooter1}); + this.DataSource = this.bindingSource1; + this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung"; + this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { + this.ruleRateFactorNull}); + this.Margins = new System.Drawing.Printing.Margins(78, 74, 100, 74); + this.PageHeight = 1169; + this.PageWidth = 827; + this.PaperKind = System.Drawing.Printing.PaperKind.A4; + this.Version = "17.1"; + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + + } + + #endregion + + private DevExpress.XtraReports.UI.DetailBand Detail; + private System.Windows.Forms.BindingSource bindingSource1; + private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader; + private DevExpress.XtraReports.UI.XRLabel xrLabel6; + private DevExpress.XtraReports.UI.XRLabel lblAnrede; + private DevExpress.XtraReports.UI.XRLabel xrLabel4; + private DevExpress.XtraReports.UI.XRLabel xrLabel3; + private DevExpress.XtraReports.UI.XRLabel RecipientPostCodeAndTown; + private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientStreet; + private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientDivision; + private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientContactPerson; + private DevExpress.XtraReports.UI.XRLabel xrLabel1; + private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter; + private DevExpress.XtraReports.UI.XRLabel xrLabel12; + private DevExpress.XtraReports.UI.XRLabel xrLabel11; + private DevExpress.XtraReports.UI.XRTable xrTable1; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow9; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell19; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow10; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell20; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell7; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow11; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell21; + private DevExpress.XtraReports.UI.XRTableRow rowErbrachteLeistung; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell22; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell6; + private DevExpress.XtraReports.UI.XRTable xrTable3; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow20; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell16; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow21; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell18; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow22; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell29; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow23; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell30; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow24; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell31; + private DevExpress.XtraReports.UI.XRLabel xrLabel10; + private DevExpress.XtraReports.UI.FormattingRule ruleRateFactorNull; + private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1; + private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1; + private DevExpress.XtraReports.UI.XRLabel xrLabel8; + private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1; + private DevExpress.XtraReports.UI.XRLabel xrLabel9; + private DevExpress.XtraReports.UI.DetailReportBand DetailReport; + private DevExpress.XtraReports.UI.DetailBand Detail1; + private DevExpress.XtraReports.UI.XRTable xrTable5; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow15; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell17; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell23; + private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1; + private DevExpress.XtraReports.UI.XRTable xrTable4; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow30; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell48; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow31; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell49; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell50; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow32; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell51; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow33; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell52; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell53; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow34; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell54; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell55; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow35; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell56; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow36; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell57; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell58; + private DevExpress.XtraReports.UI.XRLabel xrLabel16; + private DevExpress.XtraReports.UI.XRLabel xrLabel17; + private DevExpress.XtraReports.UI.XRLabel xrLabel15; + private DevExpress.XtraReports.UI.XRLabel xrLabel14; + private DevExpress.XtraReports.UI.XRLabel xrLabel13; + private DevExpress.XtraReports.UI.XRLabel xrLabel7; + private DevExpress.XtraReports.UI.XRLabel xrLabel2; + } +} diff --git a/ReportImp/SKFLeverkusen/SettlementReport.cs b/ReportImp/SKFLeverkusen/SettlementReport.cs new file mode 100644 index 000000000..88004be1e --- /dev/null +++ b/ReportImp/SKFLeverkusen/SettlementReport.cs @@ -0,0 +1,239 @@ +using System; +using System.Collections.Generic; +using BeWo.Data.Access; +using BeWo.Data.Entities; +using BeWo.Report; +using BeWo.Report.ReportObjects; +using BS.Shared; +using BS.Shared.DataContracts; + +namespace SKFLeverkusen.Alt +{ + public partial class Spitzabrechnung : DevExpress.XtraReports.UI.XtraReport, IBeWoReport + { + public Spitzabrechnung() + { + InitializeComponent(); + } + + public void SetReportDataSource(SettlementRO pRO) + { + bool isDefaultSpitzabrechnung = false; + + //if (String.IsNullOrEmpty(pRO.Notice)) + //{ + // lblNotice.Visible = false; + //} + + + if (pRO.SettlementDC.Claim < 0) + pRO.FinalSentence = ""; + else if (pRO.SettlementDC.Claim > 0) + pRO.FinalSentence = "Bitte überweisen Sie den Differenzbetrag auf unser unten angegebenes Konto unter Angabe des " + + "Namens der Klientin / des Klienten und des Geschäftszeichen"; + + var cb2sc = DAOFactory.GenericDAO.LoadByID(pRO.CostBearer2SupportConceptOid); + if (!String.IsNullOrEmpty(pRO.RecipientContactPerson) && cb2sc.CostBearerContactPerson.Sex.HasValue) + { + if (cb2sc.CostBearerContactPerson.Sex.Value == Sex.Female) + lblAnrede.Text = "Sehr geehrte Frau " + cb2sc.CostBearerContactPerson.LastName.Trim() + ","; + else + lblAnrede.Text = "Sehr geehrter Herr " + cb2sc.CostBearerContactPerson.LastName.Trim() + ","; + } + + if (pRO.InvoiceItems != null && pRO.InvoiceItems.Count == 1) + { + var ii = pRO.InvoiceItems[0]; + if ((ii.ItemDescription == "Spitzabrechung" || ii.ItemDescription == "Spitzabrechnung") && ii.GrossAmountTotal == null && ii.RateFactor == null) + { + isDefaultSpitzabrechnung = true; + } + } + if (!isDefaultSpitzabrechnung) + { + if (pRO.DifferentHourlyRateCount > 0 && pRO.HourlyRateNew.HasValue) + { + isDefaultSpitzabrechnung = true; + } + } + + if (isDefaultSpitzabrechnung) + { + //UpdateAbrechnungsFelder(pRO); + + pRO.InvoiceItems = CreateDefaultSpitzabrechnungInvoiceItems(pRO); + } + else + { + var id = GetCustomerId(pRO); + if (id == "LWLNEU") + { + pRO.RateFactorText = null; + pRO.RateFactorText2 = null; + + if (pRO.InvoiceItems != null) + { + foreach (var ii in pRO.InvoiceItems) + { + ii.ItemDescription = String.Format("{0:dd.MM.yyyy} bis {1:dd.MM.yyyy}: {2:0.##} FLS x {3:c}", + ii.ItemPeriodStart, ii.ItemPeriodEnd, ii.UnitCount, ii.AmountPerUnit); + } + } + } + else + { + if (pRO.InvoiceItems != null) + { + foreach (var ii in pRO.InvoiceItems) + { + ii.ItemDescription = String.Format("{0:dd.MM.yyyy} bis {1:dd.MM.yyyy}: {2:0.##} FLS {3}x {4:c}", + ii.ItemPeriodStart, ii.ItemPeriodEnd, + ii.UnitCount, ii.RateFactor == 0 ? "" : "x " + pRO.RateFactorText2 + " ", + ii.AmountPerUnit); + } + } + } + } + + + this.bindingSource1.DataSource = pRO; + } + + private String GetCustomerId(SettlementRO pRO) + { + var cb2sc = DAOFactory.GenericDAO.LoadByID(pRO.CostBearer2SupportConceptOid); + return cb2sc.CostBearer.ID; + } + + private IList CreateDefaultSpitzabrechnungInvoiceItems(SettlementRO pRO) + { + IList itemList = new List(); + if (pRO.DifferentHourlyRateCount == 3) + { + itemList.Add(new InvoiceItemDC + { + ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}", + pRO.AccountingStartDateString, pRO.HourlyRate3EndDateString, + pRO.GeleisteteFLSMitStundensatz3, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRate3), + + GrossAmountTotal = pRO.GeleisteteFLSMitStundensatz3 * pRO.RateFactor * pRO.HourlyRate3 + }); + + itemList.Add(new InvoiceItemDC + { + ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}", + pRO.HourlyRateOldStartDateString, pRO.HourlyRateOldEndDateString, + pRO.GeleisteteFLSMitStundensatzAlt, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateOld), + + GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAlt * pRO.RateFactor * pRO.HourlyRateOld + }); + + itemList.Add(new InvoiceItemDC + { + ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}", + pRO.HourlyRateNewStartDateString, pRO.AccountingEndDateString, + pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew), + + GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAktuell * pRO.RateFactor * pRO.HourlyRateNew + }); + + } + else if (pRO.DifferentHourlyRateCount == 2) + { + itemList.Add(new InvoiceItemDC + { + ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}", + pRO.AccountingStartDateString, pRO.HourlyRateOldEndDateString, + pRO.GeleisteteFLSMitStundensatzAlt, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateOld), + + GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAlt * (decimal)pRO.RateFactor * pRO.HourlyRateOld + }); + + itemList.Add(new InvoiceItemDC + { + ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}", + pRO.HourlyRateNewStartDateString, pRO.AccountingEndDateString, + pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew), + + GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAktuell * pRO.RateFactor * pRO.HourlyRateNew + }); + + } + else + { + itemList.Add(new InvoiceItemDC + { + ItemDescription = String.Format("{0} bis {1}: {2:0.##} FLS {3}x {4:c}", + pRO.AccountingStartDateString, pRO.AccountingEndDateString, + pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew), + + GrossAmountTotal = pRO.GeleisteteFLSMitStundensatzAktuell * pRO.RateFactor * pRO.HourlyRateNew + }); + + } + + return itemList; + } + + private void UpdateAbrechnungsFelder(SettlementRO pRO) + { + if (pRO.DifferentHourlyRateCount == 3) + { + //Erbrachte Leistungen (FLS) - bis [HourlyRateOldEndDateString] à [HourlyRateOldString] € + + pRO.Abrechnungstext1 = String.Format("{0} bis {1}", + pRO.AccountingStartDateString, pRO.HourlyRate3EndDateString); + + pRO.Abrechnungstext1 += String.Format(": {0:0.##} FLS {1}x {2:c}", + pRO.GeleisteteFLSMitStundensatz3, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRate3); + + //[AccountingStartDateString] - [HourlyRate3EndDateString] sind [RecordedFLSWithHourlyRate3String] Std. x [HourlyRate3String] € ="; + + pRO.Betrag1 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatz3 * (decimal)pRO.RateFactor * pRO.HourlyRate3); + + + pRO.Abrechnungstext2 = String.Format("{0} bis {1}", + pRO.HourlyRateOldStartDateString, pRO.HourlyRateOldEndDateString); + pRO.Abrechnungstext2 += String.Format(": {0:0.##} FLS {1}x {2:c}", + pRO.GeleisteteFLSMitStundensatzAlt, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateOld); + + pRO.Betrag2 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatzAlt * (decimal)pRO.RateFactor * pRO.HourlyRateOld); + + + pRO.Abrechnungstext3 = String.Format("{0} bis {1}", + pRO.HourlyRateNewStartDateString, pRO.AccountingEndDateString); + pRO.Abrechnungstext3 += String.Format(": {0:0.##} FLS {1}x {2:c}", + pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew); + + pRO.Betrag3 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatzAktuell * (decimal)pRO.RateFactor * pRO.HourlyRateNew); + } + else if (pRO.DifferentHourlyRateCount == 2) + { + + pRO.Abrechnungstext2 = String.Format("{0} bis {1}", + pRO.AccountingStartDateString, pRO.HourlyRateOldEndDateString); + pRO.Abrechnungstext2 += String.Format(": {0:0.##} FLS {1}x {2:c}", + pRO.GeleisteteFLSMitStundensatzAlt, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateOld); + + pRO.Betrag2 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatzAlt * (decimal)pRO.RateFactor * pRO.HourlyRateOld); + + + pRO.Abrechnungstext3 = String.Format("{0} bis {1}", + pRO.HourlyRateNewStartDateString, pRO.AccountingEndDateString); + pRO.Abrechnungstext3 += String.Format(": {0:0.##} FLS {1}x {2:c}", + pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew); + + pRO.Betrag3 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatzAktuell * (decimal)pRO.RateFactor * pRO.HourlyRateNew); + } + else + { + pRO.Abrechnungstext3 = String.Format("{0} bis {1}", + pRO.AccountingStartDateString, pRO.AccountingEndDateString); + pRO.Abrechnungstext3 += String.Format(": {0:0.##} FLS {1}x {2:c}", + pRO.GeleisteteFLSMitStundensatzAktuell, pRO.RateFactor == 1 ? "" : "x " + pRO.RateFactorText2 + " ", pRO.HourlyRateNew); + + pRO.Betrag3 = String.Format("{0:c}", pRO.GeleisteteFLSMitStundensatzAktuell * (decimal)pRO.RateFactor * pRO.HourlyRateNew); + } + } + } +} diff --git a/ReportImp/SKFLeverkusen/SettlementReport.resx b/ReportImp/SKFLeverkusen/SettlementReport.resx new file mode 100644 index 000000000..76cdda25e --- /dev/null +++ b/ReportImp/SKFLeverkusen/SettlementReport.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file diff --git a/ReportImp/SKFLeverkusen/SettlementReport2.Designer.cs b/ReportImp/SKFLeverkusen/SettlementReport2.Designer.cs new file mode 100644 index 000000000..35b7a3ad6 --- /dev/null +++ b/ReportImp/SKFLeverkusen/SettlementReport2.Designer.cs @@ -0,0 +1,976 @@ +using BeWo.Report.ReportObjects; +namespace SKFLeverkusen +{ + partial class Spitzabrechnung + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); + this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); + this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); + this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell(); + this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule(); + this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblAnrede = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); + this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); + this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); + this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow20 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow21 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow22 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow24 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); + this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); + this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); + this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); + this.fieldApprovedFLSWithFactor = new DevExpress.XtraReports.UI.CalculatedField(); + this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); + this.Detail1 = new DevExpress.XtraReports.UI.DetailBand(); + this.xrTable4 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow33 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell(); + this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.xrTable5 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow30 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow31 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow32 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow34 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow35 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow36 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow37 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); + // + // Detail + // + this.Detail.HeightF = 0F; + this.Detail.Name = "Detail"; + this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // ReportHeader + // + this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel9}); + this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F); + this.ReportHeader.HeightF = 120F; + this.ReportHeader.Name = "ReportHeader"; + this.ReportHeader.StylePriority.UseFont = false; + // + // xrLabel9 + // + this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(193F, 51.5F); + this.xrLabel9.Multiline = true; + this.xrLabel9.Name = "xrLabel9"; + this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel9.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel9.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel9.StylePriority.UseFont = false; + this.xrLabel9.Text = "\r\n"; + // + // xrTable1 + // + this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 376.3749F); + this.xrTable1.Name = "xrTable1"; + this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.rowErbrachteLeistung}); + this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrTable1.StylePriority.UseBorderColor = false; + // + // rowErbrachteLeistung + // + this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell22}); + this.rowErbrachteLeistung.Name = "rowErbrachteLeistung"; + this.rowErbrachteLeistung.Weight = 0.085D; + // + // xrTableCell22 + // + this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell22.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell22.Name = "xrTableCell22"; + this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell22.StylePriority.UseBorderColor = false; + this.xrTableCell22.StylePriority.UseBorders = false; + this.xrTableCell22.StylePriority.UseFont = false; + this.xrTableCell22.Text = "Erbrachte Leistungen:"; + this.xrTableCell22.Weight = 1D; + // + // ruleRateFactorNull + // + this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?"; + this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False; + this.ruleRateFactorNull.Name = "ruleRateFactorNull"; + // + // xrLabel6 + // + this.xrLabel6.BackColor = System.Drawing.Color.Transparent; + this.xrLabel6.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 322.2083F); + this.xrLabel6.Multiline = true; + this.xrLabel6.Name = "xrLabel6"; + this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel6.SizeF = new System.Drawing.SizeF(642F, 40.95834F); + this.xrLabel6.StylePriority.UseBackColor = false; + this.xrLabel6.StylePriority.UseFont = false; + this.xrLabel6.Text = "für die aufgeführte Hilfe wurden im obigen Zeitraum die folgenden Leistungen erbr" + + "acht.\r\nDen genauen Leistungsnachweis entnehmen Sie bitte der Anlage."; + // + // lblAnrede + // + this.lblAnrede.Font = new System.Drawing.Font("Arial", 11.25F); + this.lblAnrede.LocationFloat = new DevExpress.Utils.PointFloat(0F, 289.2083F); + this.lblAnrede.Name = "lblAnrede"; + this.lblAnrede.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblAnrede.SizeF = new System.Drawing.SizeF(317F, 17F); + this.lblAnrede.StylePriority.UseFont = false; + this.lblAnrede.Text = "Sehr geehrte Damen und Herren,"; + // + // xrLabel4 + // + this.xrLabel4.BackColor = System.Drawing.Color.Transparent; + this.xrLabel4.CanShrink = true; + this.xrLabel4.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 225F); + this.xrLabel4.Multiline = true; + this.xrLabel4.Name = "xrLabel4"; + this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrLabel4.StylePriority.UseBackColor = false; + this.xrLabel4.StylePriority.UseFont = false; + this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]"; + this.xrLabel4.WordWrap = false; + // + // xrLabel3 + // + this.xrLabel3.BackColor = System.Drawing.Color.Transparent; + this.xrLabel3.CanShrink = true; + this.xrLabel3.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 209F); + this.xrLabel3.Name = "xrLabel3"; + this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 16F); + this.xrLabel3.StylePriority.UseBackColor = false; + this.xrLabel3.StylePriority.UseFont = false; + this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerFirstName] [CustomerLa" + + "stName]"; + this.xrLabel3.WordWrap = false; + // + // RecipientPostCodeAndTown + // + this.RecipientPostCodeAndTown.CanShrink = true; + this.RecipientPostCodeAndTown.Font = new System.Drawing.Font("Arial", 11.25F); + this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F); + this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown"; + this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F); + this.RecipientPostCodeAndTown.StylePriority.UseFont = false; + this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]"; + // + // xrLabel_RecipientStreet + // + this.xrLabel_RecipientStreet.CanShrink = true; + this.xrLabel_RecipientStreet.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F); + this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet"; + this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel_RecipientStreet.StylePriority.UseFont = false; + this.xrLabel_RecipientStreet.Text = "[RecipientStreet]"; + // + // xrLabel_RecipientDivision + // + this.xrLabel_RecipientDivision.CanShrink = true; + this.xrLabel_RecipientDivision.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F); + this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision"; + this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel_RecipientDivision.StylePriority.UseFont = false; + this.xrLabel_RecipientDivision.Text = "[RecipientDivision]"; + // + // xrLabel_RecipientContactPerson + // + this.xrLabel_RecipientContactPerson.CanShrink = true; + this.xrLabel_RecipientContactPerson.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F); + this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson"; + this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false; + this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]"; + // + // xrLabel1 + // + this.xrLabel1.CanShrink = true; + this.xrLabel1.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrLabel1.Name = "xrLabel1"; + this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel1.StylePriority.UseFont = false; + this.xrLabel1.Text = "[RecipientOrganisation]"; + // + // ReportFooter + // + this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel7, + this.xrLabel8, + this.xrLabel18, + this.xrTable3, + this.xrLabel11}); + this.ReportFooter.Font = new System.Drawing.Font("Verdana", 10F); + this.ReportFooter.HeightF = 215.5835F; + this.ReportFooter.KeepTogether = true; + this.ReportFooter.Name = "ReportFooter"; + this.ReportFooter.StylePriority.UseFont = false; + // + // xrTable3 + // + this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 22.58333F); + this.xrTable3.Name = "xrTable3"; + this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow20, + this.xrTableRow21, + this.xrTableRow22, + this.xrTableRow23, + this.xrTableRow24}); + this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 68F); + this.xrTable3.StylePriority.UseFont = false; + // + // xrTableRow20 + // + this.xrTableRow20.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell16}); + this.xrTableRow20.Name = "xrTableRow20"; + this.xrTableRow20.Weight = 0.38095238095238093D; + // + // xrTableCell16 + // + this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")}); + this.xrTableCell16.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell16.Name = "xrTableCell16"; + this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell16.StylePriority.UseFont = false; + this.xrTableCell16.StylePriority.UsePadding = false; + this.xrTableCell16.Text = "xrTableCell1"; + this.xrTableCell16.Weight = 3D; + // + // xrTableRow21 + // + this.xrTableRow21.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell18}); + this.xrTableRow21.Name = "xrTableRow21"; + this.xrTableRow21.Weight = 0.23809523809523808D; + // + // xrTableCell18 + // + this.xrTableCell18.Name = "xrTableCell18"; + this.xrTableCell18.Weight = 3D; + // + // xrTableRow22 + // + this.xrTableRow22.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell29}); + this.xrTableRow22.Name = "xrTableRow22"; + this.xrTableRow22.Weight = 0.38095238095238088D; + // + // xrTableCell29 + // + this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "AbsenceTimes")}); + this.xrTableCell29.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell29.Name = "xrTableCell29"; + this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell29.StylePriority.UseFont = false; + this.xrTableCell29.StylePriority.UsePadding = false; + this.xrTableCell29.Text = "xrTableCell4"; + this.xrTableCell29.Weight = 3D; + // + // xrTableRow23 + // + this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell30}); + this.xrTableRow23.Name = "xrTableRow23"; + this.xrTableRow23.Weight = 0.23809523809523803D; + // + // xrTableCell30 + // + this.xrTableCell30.Name = "xrTableCell30"; + this.xrTableCell30.Weight = 3D; + // + // xrTableRow24 + // + this.xrTableRow24.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell31}); + this.xrTableRow24.Name = "xrTableRow24"; + this.xrTableRow24.Weight = 0.38095238095238093D; + // + // xrTableCell31 + // + this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "FinalSentence")}); + this.xrTableCell31.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell31.Name = "xrTableCell31"; + this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell31.StylePriority.UseFont = false; + this.xrTableCell31.StylePriority.UsePadding = false; + this.xrTableCell31.Text = "xrTableCell8"; + this.xrTableCell31.Weight = 3D; + // + // xrLabel11 + // + this.xrLabel11.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(582.9999F, 181.5834F); + this.xrLabel11.Name = "xrLabel11"; + this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel11.SizeF = new System.Drawing.SizeF(67F, 17F); + this.xrLabel11.StylePriority.UseFont = false; + this.xrLabel11.StylePriority.UseTextAlignment = false; + this.xrLabel11.Text = "Anlage"; + this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + // + // topMarginBand1 + // + this.topMarginBand1.HeightF = 100F; + this.topMarginBand1.Name = "topMarginBand1"; + // + // bottomMarginBand1 + // + this.bottomMarginBand1.HeightF = 100F; + this.bottomMarginBand1.Name = "bottomMarginBand1"; + // + // GroupHeader1 + // + this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel2, + this.xrLabel5, + this.xrLabel13, + this.xrLabel14, + this.xrLabel15, + this.xrLabel17, + this.xrLabel16, + this.xrLabel1, + this.xrLabel_RecipientContactPerson, + this.xrLabel_RecipientDivision, + this.xrLabel_RecipientStreet, + this.RecipientPostCodeAndTown, + this.xrLabel3, + this.xrLabel4, + this.lblAnrede, + this.xrLabel6, + this.xrTable1}); + this.GroupHeader1.Font = new System.Drawing.Font("Verdana", 10F); + this.GroupHeader1.HeightF = 393.3749F; + this.GroupHeader1.Name = "GroupHeader1"; + this.GroupHeader1.StylePriority.UseFont = false; + // + // fieldApprovedFLSWithFactor + // + this.fieldApprovedFLSWithFactor.Expression = "[ApprovedFLSTotal] * [RateFactor]"; + this.fieldApprovedFLSWithFactor.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal; + this.fieldApprovedFLSWithFactor.Name = "fieldApprovedFLSWithFactor"; + // + // DetailReport + // + this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail1}); + this.DetailReport.DataMember = "InvoiceItems"; + this.DetailReport.DataSource = this.bindingSource1; + this.DetailReport.Level = 0; + this.DetailReport.Name = "DetailReport"; + // + // Detail1 + // + this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable4}); + this.Detail1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Detail1.HeightF = 17F; + this.Detail1.Name = "Detail1"; + this.Detail1.StylePriority.UseFont = false; + // + // xrTable4 + // + this.xrTable4.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable4.Name = "xrTable4"; + this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow33}); + this.xrTable4.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrTable4.StylePriority.UseBorderColor = false; + // + // xrTableRow33 + // + this.xrTableRow33.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell52, + this.xrTableCell53}); + this.xrTableRow33.Name = "xrTableRow33"; + this.xrTableRow33.Weight = 0.085D; + // + // xrTableCell52 + // + this.xrTableCell52.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell52.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.DetailDescription")}); + this.xrTableCell52.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell52.Name = "xrTableCell52"; + this.xrTableCell52.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell52.StylePriority.UseBorderColor = false; + this.xrTableCell52.StylePriority.UseBorders = false; + this.xrTableCell52.StylePriority.UseFont = false; + this.xrTableCell52.Text = "abzüglich der geleisteten Abschlagszahlung:"; + this.xrTableCell52.Weight = 0.78314100999098568D; + // + // xrTableCell53 + // + this.xrTableCell53.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.GrossAmountTotal", "{0:c}")}); + this.xrTableCell53.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell53.Name = "xrTableCell53"; + this.xrTableCell53.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell53.StylePriority.UseBorderColor = false; + this.xrTableCell53.StylePriority.UseBorders = false; + this.xrTableCell53.StylePriority.UseFont = false; + this.xrTableCell53.StylePriority.UseTextAlignment = false; + this.xrTableCell53.Text = "xrTableCell10"; + this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell53.Weight = 0.21685899000901443D; + // + // bindingSource1 + // + this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.Settlement2RO); + // + // GroupFooter1 + // + this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable5}); + this.GroupFooter1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.GroupFooter1.HeightF = 132F; + this.GroupFooter1.Name = "GroupFooter1"; + this.GroupFooter1.StylePriority.UseFont = false; + // + // xrTable5 + // + this.xrTable5.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable5.Name = "xrTable5"; + this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow30, + this.xrTableRow31, + this.xrTableRow32, + this.xrTableRow34, + this.xrTableRow35, + this.xrTableRow36, + this.xrTableRow37}); + this.xrTable5.SizeF = new System.Drawing.SizeF(650F, 132F); + this.xrTable5.StylePriority.UseBorderColor = false; + // + // xrTableRow30 + // + this.xrTableRow30.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell48}); + this.xrTableRow30.Name = "xrTableRow30"; + this.xrTableRow30.Weight = 0.085D; + // + // xrTableCell48 + // + this.xrTableCell48.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell48.Name = "xrTableCell48"; + this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell48.StylePriority.UseBorderColor = false; + this.xrTableCell48.StylePriority.UseBorders = false; + this.xrTableCell48.Weight = 1D; + // + // xrTableRow31 + // + this.xrTableRow31.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell49, + this.xrTableCell50}); + this.xrTableRow31.Name = "xrTableRow31"; + this.xrTableRow31.Weight = 0.085D; + // + // xrTableCell49 + // + this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell49.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell49.Name = "xrTableCell49"; + this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell49.StylePriority.UseBorders = false; + this.xrTableCell49.StylePriority.UseFont = false; + this.xrTableCell49.StylePriority.UsePadding = false; + this.xrTableCell49.Text = "Gesamtforderung:"; + this.xrTableCell49.Weight = 0.78314100999098546D; + // + // xrTableCell50 + // + this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBillableTotal", "{0:c}")}); + this.xrTableCell50.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell50.Name = "xrTableCell50"; + this.xrTableCell50.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell50.StylePriority.UseBorders = false; + this.xrTableCell50.StylePriority.UseFont = false; + this.xrTableCell50.StylePriority.UsePadding = false; + this.xrTableCell50.StylePriority.UseTextAlignment = false; + this.xrTableCell50.Text = "xrTableCell9"; + this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell50.Weight = 0.21685899000901443D; + // + // xrTableRow32 + // + this.xrTableRow32.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell51}); + this.xrTableRow32.Name = "xrTableRow32"; + this.xrTableRow32.Weight = 0.085D; + // + // xrTableCell51 + // + this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell51.Name = "xrTableCell51"; + this.xrTableCell51.StylePriority.UseBorders = false; + this.xrTableCell51.Weight = 1D; + // + // xrTableRow34 + // + this.xrTableRow34.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell54, + this.xrTableCell55}); + this.xrTableRow34.Name = "xrTableRow34"; + this.xrTableRow34.Weight = 0.085D; + // + // xrTableCell54 + // + this.xrTableCell54.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell54.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell54.Name = "xrTableCell54"; + this.xrTableCell54.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell54.StylePriority.UseBorderColor = false; + this.xrTableCell54.StylePriority.UseBorders = false; + this.xrTableCell54.StylePriority.UseFont = false; + this.xrTableCell54.Text = "abzüglich der geleisteten Abschlagszahlung:"; + this.xrTableCell54.Weight = 0.78314100999098568D; + // + // xrTableCell55 + // + this.xrTableCell55.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountAdvancedPayments", "{0:c}")}); + this.xrTableCell55.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell55.Name = "xrTableCell55"; + this.xrTableCell55.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell55.StylePriority.UseBorderColor = false; + this.xrTableCell55.StylePriority.UseBorders = false; + this.xrTableCell55.StylePriority.UseFont = false; + this.xrTableCell55.StylePriority.UseTextAlignment = false; + this.xrTableCell55.Text = "xrTableCell10"; + this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell55.Weight = 0.21685899000901443D; + // + // xrTableRow35 + // + this.xrTableRow35.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell56, + this.xrTableCell57}); + this.xrTableRow35.Name = "xrTableRow35"; + this.xrTableRow35.Weight = 0.085D; + // + // xrTableCell56 + // + this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell56.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell56.Name = "xrTableCell56"; + this.xrTableCell56.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell56.StylePriority.UseBorders = false; + this.xrTableCell56.StylePriority.UseFont = false; + this.xrTableCell56.StylePriority.UsePadding = false; + this.xrTableCell56.Text = "abzüglich Eigenanteil:"; + this.xrTableCell56.Weight = 0.78314100999098568D; + // + // xrTableCell57 + // + this.xrTableCell57.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell57.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung", "{0:c}")}); + this.xrTableCell57.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell57.Name = "xrTableCell57"; + this.xrTableCell57.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell57.StylePriority.UseBorders = false; + this.xrTableCell57.StylePriority.UseFont = false; + this.xrTableCell57.StylePriority.UsePadding = false; + this.xrTableCell57.StylePriority.UseTextAlignment = false; + this.xrTableCell57.Text = "xrTableCell15"; + this.xrTableCell57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell57.Weight = 0.21685899000901443D; + // + // xrTableRow36 + // + this.xrTableRow36.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell58}); + this.xrTableRow36.Name = "xrTableRow36"; + this.xrTableRow36.Weight = 0.085D; + // + // xrTableCell58 + // + this.xrTableCell58.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell58.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell58.Name = "xrTableCell58"; + this.xrTableCell58.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell58.StylePriority.UseBorderColor = false; + this.xrTableCell58.StylePriority.UseBorders = false; + this.xrTableCell58.Weight = 1D; + // + // xrTableRow37 + // + this.xrTableRow37.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell59, + this.xrTableCell60}); + this.xrTableRow37.Name = "xrTableRow37"; + this.xrTableRow37.Weight = 0.15D; + // + // xrTableCell59 + // + this.xrTableCell59.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell59.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell59.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrTableCell59.Name = "xrTableCell59"; + this.xrTableCell59.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell59.StylePriority.UseBorderColor = false; + this.xrTableCell59.StylePriority.UseBorders = false; + this.xrTableCell59.StylePriority.UseFont = false; + this.xrTableCell59.Text = "Differenzbetrag:"; + this.xrTableCell59.Weight = 0.78314100999098568D; + // + // xrTableCell60 + // + this.xrTableCell60.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell60.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Claim", "{0:c}")}); + this.xrTableCell60.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold); + this.xrTableCell60.Name = "xrTableCell60"; + this.xrTableCell60.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell60.StylePriority.UseBorderColor = false; + this.xrTableCell60.StylePriority.UseBorders = false; + this.xrTableCell60.StylePriority.UseFont = false; + this.xrTableCell60.StylePriority.UseTextAlignment = false; + this.xrTableCell60.Text = "xrTableCell17"; + this.xrTableCell60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell60.Weight = 0.21685899000901443D; + // + // xrLabel5 + // + this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate", "{0:dd.MM.yyyy}")}); + this.xrLabel5.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(509.0416F, 156.5833F); + this.xrLabel5.Name = "xrLabel5"; + this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel5.SizeF = new System.Drawing.SizeF(140.9585F, 23F); + this.xrLabel5.StylePriority.UseFont = false; + this.xrLabel5.StylePriority.UseTextAlignment = false; + this.xrLabel5.Text = "xrLabel8"; + this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + // + // xrLabel13 + // + this.xrLabel13.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(509.0417F, 144F); + this.xrLabel13.Name = "xrLabel13"; + this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel13.SizeF = new System.Drawing.SizeF(140.9584F, 12.58336F); + this.xrLabel13.StylePriority.UseFont = false; + this.xrLabel13.StylePriority.UseTextAlignment = false; + this.xrLabel13.Text = "Datum"; + this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + // + // xrLabel14 + // + this.xrLabel14.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 144F); + this.xrLabel14.Name = "xrLabel14"; + this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel14.SizeF = new System.Drawing.SizeF(140.9584F, 12.58336F); + this.xrLabel14.StylePriority.UseFont = false; + this.xrLabel14.StylePriority.UseTextAlignment = false; + this.xrLabel14.Text = "Rechnungsnummer"; + this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel15 + // + this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceNumber")}); + this.xrLabel15.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 156.5833F); + this.xrLabel15.Name = "xrLabel15"; + this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel15.SizeF = new System.Drawing.SizeF(140.9585F, 23F); + this.xrLabel15.StylePriority.UseFont = false; + this.xrLabel15.StylePriority.UseTextAlignment = false; + this.xrLabel15.Text = "xrLabel8"; + this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel17 + // + this.xrLabel17.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(260.1874F, 156.5833F); + this.xrLabel17.Name = "xrLabel17"; + this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel17.SizeF = new System.Drawing.SizeF(140.9585F, 23F); + this.xrLabel17.StylePriority.UseFont = false; + this.xrLabel17.StylePriority.UseTextAlignment = false; + this.xrLabel17.Text = "220191"; + this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + // + // xrLabel16 + // + this.xrLabel16.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(260.1874F, 144F); + this.xrLabel16.Name = "xrLabel16"; + this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel16.SizeF = new System.Drawing.SizeF(140.9584F, 12.58336F); + this.xrLabel16.StylePriority.UseFont = false; + this.xrLabel16.StylePriority.UseTextAlignment = false; + this.xrLabel16.Text = "Geschäftszeichen"; + this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + // + // xrLabel2 + // + this.xrLabel2.BackColor = System.Drawing.Color.Transparent; + this.xrLabel2.CanShrink = true; + this.xrLabel2.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 242F); + this.xrLabel2.Multiline = true; + this.xrLabel2.Name = "xrLabel2"; + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel2.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrLabel2.StylePriority.UseBackColor = false; + this.xrLabel2.StylePriority.UseFont = false; + this.xrLabel2.Text = "[AccountingPeriod]"; + this.xrLabel2.WordWrap = false; + // + // xrLabel7 + // + this.xrLabel7.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 112.5F); + this.xrLabel7.Multiline = true; + this.xrLabel7.Name = "xrLabel7"; + this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel7.SizeF = new System.Drawing.SizeF(175F, 42.00001F); + this.xrLabel7.StylePriority.UseFont = false; + this.xrLabel7.Text = "Mit freundlichen Grüßen\r\ni.A."; + // + // xrLabel8 + // + this.xrLabel8.Font = new System.Drawing.Font("Arial", 11.25F); + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 181.5834F); + this.xrLabel8.Name = "xrLabel8"; + this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel8.SizeF = new System.Drawing.SizeF(225F, 17F); + this.xrLabel8.StylePriority.UseFont = false; + this.xrLabel8.Text = "Mechthild Alberts"; + // + // xrLabel18 + // + this.xrLabel18.Font = new System.Drawing.Font("Arial", 8F); + this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 198.5835F); + this.xrLabel18.Name = "xrLabel18"; + this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel18.SizeF = new System.Drawing.SizeF(225F, 17F); + this.xrLabel18.StylePriority.UseFont = false; + this.xrLabel18.Text = "Stellvertredende Geschäftsführerin"; + // + // Spitzabrechnung + // + this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail, + this.ReportHeader, + this.ReportFooter, + this.topMarginBand1, + this.bottomMarginBand1, + this.GroupHeader1, + this.DetailReport, + this.GroupFooter1}); + this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] { + this.fieldApprovedFLSWithFactor}); + this.DataSource = this.bindingSource1; + this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung"; + this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { + this.ruleRateFactorNull}); + this.Margins = new System.Drawing.Printing.Margins(75, 74, 100, 100); + this.PageHeight = 1169; + this.PageWidth = 827; + this.PaperKind = System.Drawing.Printing.PaperKind.A4; + this.Version = "17.1"; + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + + } + + #endregion + + private DevExpress.XtraReports.UI.DetailBand Detail; + private System.Windows.Forms.BindingSource bindingSource1; + private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader; + private DevExpress.XtraReports.UI.XRLabel xrLabel6; + private DevExpress.XtraReports.UI.XRLabel lblAnrede; + private DevExpress.XtraReports.UI.XRLabel xrLabel4; + private DevExpress.XtraReports.UI.XRLabel xrLabel3; + private DevExpress.XtraReports.UI.XRLabel RecipientPostCodeAndTown; + private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientStreet; + private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientDivision; + private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientContactPerson; + private DevExpress.XtraReports.UI.XRLabel xrLabel1; + private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter; + private DevExpress.XtraReports.UI.XRLabel xrLabel11; + private DevExpress.XtraReports.UI.XRTable xrTable1; + private DevExpress.XtraReports.UI.XRTableRow rowErbrachteLeistung; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell22; + private DevExpress.XtraReports.UI.XRTable xrTable3; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow20; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell16; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow21; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell18; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow22; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell29; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow23; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell30; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow24; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell31; + private DevExpress.XtraReports.UI.FormattingRule ruleRateFactorNull; + private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1; + private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1; + private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1; + private DevExpress.XtraReports.UI.CalculatedField fieldApprovedFLSWithFactor; + private DevExpress.XtraReports.UI.DetailReportBand DetailReport; + private DevExpress.XtraReports.UI.DetailBand Detail1; + private DevExpress.XtraReports.UI.XRTable xrTable4; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow33; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell52; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell53; + private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1; + private DevExpress.XtraReports.UI.XRTable xrTable5; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow30; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell48; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow31; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell49; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell50; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow32; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell51; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow34; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell54; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell55; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow35; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell56; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell57; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow36; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell58; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow37; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell59; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell60; + private DevExpress.XtraReports.UI.XRLabel xrLabel9; + private DevExpress.XtraReports.UI.XRLabel xrLabel2; + private DevExpress.XtraReports.UI.XRLabel xrLabel5; + private DevExpress.XtraReports.UI.XRLabel xrLabel13; + private DevExpress.XtraReports.UI.XRLabel xrLabel14; + private DevExpress.XtraReports.UI.XRLabel xrLabel15; + private DevExpress.XtraReports.UI.XRLabel xrLabel17; + private DevExpress.XtraReports.UI.XRLabel xrLabel16; + private DevExpress.XtraReports.UI.XRLabel xrLabel7; + private DevExpress.XtraReports.UI.XRLabel xrLabel8; + private DevExpress.XtraReports.UI.XRLabel xrLabel18; + } +} diff --git a/ReportImp/SKFLeverkusen/SettlementReport2.cs b/ReportImp/SKFLeverkusen/SettlementReport2.cs new file mode 100644 index 000000000..e92c73ab3 --- /dev/null +++ b/ReportImp/SKFLeverkusen/SettlementReport2.cs @@ -0,0 +1,70 @@ +using System; +using System.Drawing; +using System.Collections; +using System.ComponentModel; +using DevExpress.XtraReports.UI; +using BeWo.Report.ReportObjects; +using BeWo.Report; +using BS.Shared; +using BeWo.Data.Access; +using BeWo.Data.Entities; + +namespace SKFLeverkusen +{ + public partial class Spitzabrechnung : DevExpress.XtraReports.UI.XtraReport, IBeWoReport + { + public Spitzabrechnung() + { + InitializeComponent(); + } + + public void SetReportDataSource(Settlement2RO pRO) + { + //if (String.IsNullOrEmpty(pRO.Notice)) + //{ + // lblNotice.Visible = false; + //} + + decimal rateFactor = 1; + + foreach (var ii in pRO.InvoiceItems) + { + if (ii.RateFactor.HasValue) + { + rateFactor = (100 + ii.RateFactor.Value) / 100; + } + } + pRO.RateFactor = (double)rateFactor; + + if (pRO.InvoiceBaseOid.HasValue) + { + var ib = DAOFactory.GenericDAO.LoadByID(pRO.InvoiceBaseOid.Value); + if (ib.CostBearer2SupportConcept != null) + { + var cb2sc = ib.CostBearer2SupportConcept; + if (!String.IsNullOrEmpty(pRO.RecipientContactPerson)) + { + if (cb2sc.CostBearerContactPerson != null && cb2sc.CostBearerContactPerson.Sex.HasValue) + { + string anrede = "Sehr geehrte Frau"; + + if (cb2sc.CostBearerContactPerson.Sex.Value == Sex.Male) + anrede = "Sehr geehrter Herr"; + + lblAnrede.Text = String.Format("{0} {1},", anrede, cb2sc.CostBearerContactPerson.LastName); + } + } + } + } + + if (pRO.Claim < 0) + pRO.FinalSentence = ""; + else if (pRO.Claim > 0) + pRO.FinalSentence = "Bitte überweisen Sie den Differenzbetrag auf unser unten angegebenes Konto unter Angabe des " + + "Namens der Klientin / des Klienten und des Geschäftszeichen"; + + + this.bindingSource1.DataSource = pRO; + } + } +} diff --git a/ReportImp/SKFLeverkusen/SettlementReport2.resx b/ReportImp/SKFLeverkusen/SettlementReport2.resx new file mode 100644 index 000000000..d25f3eba2 --- /dev/null +++ b/ReportImp/SKFLeverkusen/SettlementReport2.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + \ No newline at end of file