private void button4_Click(object sender, EventArgs e)
        {
            XtraReport1 report = new XtraReport1();

            // Create a shape control.
            XRShape shape = new XRShape();

            // Set the shape's type to Polygon.
            shape.Shape = new ShapePolygon();

            // Adjust the Polygon shape's main properties.
            shape.Angle     = 90;
            shape.Width     = 200;
            shape.Height    = 200;
            shape.ForeColor = Color.Brown;
            shape.FillColor = Color.Beige;
            shape.Stretch   = false;

            // Adjust the Polygon shape's specific properties.
            ((ShapePolygon)shape.Shape).NumberOfSides = 7;
            ((ShapePolygon)shape.Shape).Fillet        = 5;

            // Preview the report.
            report.Detail.Controls.Add(shape);
            report.ShowPreview();
        }
        private void button7_Click(object sender, EventArgs e)
        {
            XtraReport1 report = new XtraReport1();

            // Create a shape control.
            XRShape shape = new XRShape();

            // Set the shape's type to Cross.
            shape.Shape = new ShapeCross();

            // Adjust the Cross shape's main properties.
            shape.Angle     = 90;
            shape.Width     = 200;
            shape.Height    = 200;
            shape.ForeColor = Color.Brown;
            shape.FillColor = Color.Beige;
            shape.Stretch   = false;

            // Adjust the Cross shape's specific properties.
            ((ShapeCross)shape.Shape).HorizontalLineWidth = 50;
            ((ShapeCross)shape.Shape).VerticalLineWidth   = 50;
            ((ShapeCross)shape.Shape).Fillet = 20;

            // Preview the report.
            report.Detail.Controls.Add(shape);
            report.ShowPreview();
        }
        private void button9_Click(object sender, EventArgs e)
        {
            XtraReport1 report = new XtraReport1();

            // Create a shape control.
            XRShape shape = new XRShape();

            // Set the shape's type to Brace.
            shape.Shape = new ShapeBrace();

            // Adjust the Brace shape's main properties.
            shape.Angle     = 180;
            shape.Width     = 200;
            shape.Height    = 200;
            shape.ForeColor = Color.Brown;
            shape.Stretch   = false;

            // Adjust the Brace shape's specific properties.
            ((ShapeBrace)shape.Shape).TipLength  = 20;
            ((ShapeBrace)shape.Shape).TailLength = 20;
            ((ShapeBrace)shape.Shape).Fillet     = 50;

            // Preview the report.
            report.Detail.Controls.Add(shape);
            report.ShowPreview();
        }
        private void button5_Click(object sender, EventArgs e)
        {
            XtraReport1 report = new XtraReport1();

            // Create a shape control.
            XRShape shape = new XRShape();

            // Set the shape's type to Star.
            shape.Shape = new ShapeStar();

            // Adjust the Star shape's main properties.
            shape.Angle     = 90;
            shape.Width     = 200;
            shape.Height    = 200;
            shape.ForeColor = Color.Brown;
            shape.FillColor = Color.Beige;
            shape.Stretch   = false;

            // Adjust the Star shape's specific properties.
            ((ShapeStar)shape.Shape).Concavity      = 50;
            ((ShapeStar)shape.Shape).StarPointCount = 7;
            ((ShapeStar)shape.Shape).Fillet         = 5;

            // Preview the report.
            report.Detail.Controls.Add(shape);
            report.ShowPreview();
        }
 void generator_CustomizeColumn(object source, ControlCustomizationEventArgs e)
 {
     if (e.FieldName == "Discontinued")
     {
         XRShape control = new XRShape();
         control.SizeF     = e.Owner.SizeF;
         control.LocationF = new System.Drawing.PointF(0, 0);
         e.Owner.Controls.Add(control);
         control.Shape = new ShapeStar()
         {
             StarPointCount = 5, Concavity = 30
         };
         control.BeforePrint += new System.Drawing.Printing.PrintEventHandler(control_BeforePrint);
         e.IsModified         = true;
     }
 }
        private void button6_Click(object sender, EventArgs e)
        {
            XtraReport1 report = new XtraReport1();

            // Create a shape control.
            XRShape shape = new XRShape();

            // Set the shape's type to Line.
            shape.Shape = new ShapeLine();

            // Adjust the Line shape's main properties.
            shape.Angle     = 45;
            shape.Width     = 200;
            shape.Height    = 200;
            shape.ForeColor = Color.Brown;
            shape.Stretch   = false;

            // Preview the report.
            report.Detail.Controls.Add(shape);
            report.ShowPreview();
        }
예제 #7
0
        private void ReadShape(XRShape xtraControl, StiContainer parent)
        {
            StiShape shape = new StiShape();

            parent.Components.Add(shape);

            ReadComp(xtraControl, shape);
            ReadBorder(xtraControl, shape);

            #region Shape
            if (xtraControl.Shape is ShapeRectangle)
            {
                shape.ShapeType = new StiRectangleShapeType();
            }
            else if (xtraControl.Shape is ShapeArrow)
            {
                shape.ShapeType = new StiArrowShapeType();
            }
            else if (xtraControl.Shape is ShapeCross)
            {
                shape.ShapeType = new StiPlusShapeType();
            }
            else if (xtraControl.Shape is ShapeEllipse)
            {
                shape.ShapeType = new StiOvalShapeType();
            }
            else if (xtraControl.Shape is ShapeLine)
            {
                shape.ShapeType = new StiHorizontalLineShapeType();
            }
            #endregion

            shape.Size        = xtraControl.LineWidth;
            shape.BorderColor = xtraControl.ForeColor;
            shape.Brush       = new StiSolidBrush(xtraControl.FillColor);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters msSqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(MRPReportSummary));
     DevExpress.XtraPrinting.Shape.ShapeRectangle   shapeRectangle1  = new DevExpress.XtraPrinting.Shape.ShapeRectangle();
     DevExpress.XtraReports.UI.XRSummary            xrSummary2       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary3       = new DevExpress.XtraReports.UI.XRSummary();
     this.DocNum         = new DevExpress.XtraReports.Parameters.Parameter();
     this.EntityCode     = new DevExpress.XtraReports.Parameters.Parameter();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLine6        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine5        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine4        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine3        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLine1        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrLine2        = new DevExpress.XtraReports.UI.XRLine();
     this.PageHeader     = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrShape1       = new DevExpress.XtraReports.UI.XRShape();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter   = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // DocNum
     //
     this.DocNum.Description = "DocNumber";
     this.DocNum.Name        = "DocNum";
     this.DocNum.Visible     = false;
     //
     // EntityCode
     //
     this.EntityCode.Description = "Entity";
     this.EntityCode.Name        = "EntityCode";
     this.EntityCode.Visible     = false;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine6,
         this.xrLine5,
         this.xrLine4,
         this.xrLine3,
         this.xrLine1,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.HeightF       = 26.25001F;
     this.Detail.KeepTogether  = true;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine6
     //
     this.xrLine6.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrLine6.LineDirection  = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine6.LocationFloat  = new DevExpress.Utils.PointFloat(8F, 0F);
     this.xrLine6.Name           = "xrLine6";
     this.xrLine6.SizeF          = new System.Drawing.SizeF(5.208313F, 26.25001F);
     //
     // xrLine5
     //
     this.xrLine5.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrLine5.LineDirection  = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine5.LocationFloat  = new DevExpress.Utils.PointFloat(486.7917F, 0F);
     this.xrLine5.Name           = "xrLine5";
     this.xrLine5.SizeF          = new System.Drawing.SizeF(5.208313F, 26.25001F);
     //
     // xrLine4
     //
     this.xrLine4.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrLine4.LineDirection  = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine4.LocationFloat  = new DevExpress.Utils.PointFloat(355.6249F, 0F);
     this.xrLine4.Name           = "xrLine4";
     this.xrLine4.SizeF          = new System.Drawing.SizeF(5.208313F, 26.25001F);
     //
     // xrLine3
     //
     this.xrLine3.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrLine3.LineDirection  = DevExpress.XtraReports.UI.LineDirection.Vertical;
     this.xrLine3.LocationFloat  = new DevExpress.Utils.PointFloat(240.7499F, 0F);
     this.xrLine3.Name           = "xrLine3";
     this.xrLine3.SizeF          = new System.Drawing.SizeF(5.208313F, 26.25001F);
     //
     // xrLine1
     //
     this.xrLine1.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
     this.xrLine1.LocationFloat  = new DevExpress.Utils.PointFloat(9.999939F, 22.37501F);
     this.xrLine1.Name           = "xrLine1";
     this.xrLine1.SizeF          = new System.Drawing.SizeF(480.0001F, 2F);
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[EdittedTotalCost]")
     });
     this.xrLabel3.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(366.3749F, 3F);
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(118.75F, 18.12499F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "xrLabelTotalEdittedCost";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrLabel3.TextFormatString               = "{0:n2}";
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[TotalCost]")
     });
     this.xrLabel2.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(250.6249F, 3F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(100F, 18.12499F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     xrSummary1.Running                           = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel2.Summary                        = xrSummary1;
     this.xrLabel2.Text                           = "xrLabelTotalCost";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrLabel2.TextFormatString               = "{0:n2}";
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[MRPGroup]")
     });
     this.xrLabel1.Font                  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.LocationFloat         = new DevExpress.Utils.PointFloat(19.99995F, 3F);
     this.xrLabel1.Name                  = "xrLabel1";
     this.xrLabel1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                 = new System.Drawing.SizeF(218.75F, 18.12499F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text                  = "xrLabel1";
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 16F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.TopMargin.Visible       = false;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(366.25F, 9F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(118.75F, 29.87498F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Recommended Total Cost";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel4
     //
     this.xrLabel4.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(251.5F, 20.75F);
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(100F, 12.99999F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "Total Cost";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 42.125F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName           = "summary_hijo_portal_Connection";
     msSqlConnectionParameters1.AuthorizationType = DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.SqlServer;
     msSqlConnectionParameters1.DatabaseName      = "hijo_portal";
     msSqlConnectionParameters1.Password          = "******";
     msSqlConnectionParameters1.ServerName        = "192.168.100.11,1433";
     msSqlConnectionParameters1.UserName          = "******";
     this.sqlDataSource1.ConnectionParameters     = msSqlConnectionParameters1;
     this.sqlDataSource1.Name = "sqlDataSource1";
     storedProcQuery1.Name    = "MRPSummaryPreview";
     queryParameter1.Name     = "@headerdocnum";
     queryParameter1.Type     = typeof(string);
     queryParameter2.Name     = "@entity";
     queryParameter2.Type     = typeof(string);
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.StoredProcName = "MRPSummaryPreview";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrLine2
     //
     this.xrLine2.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
     this.xrLine2.LocationFloat  = new DevExpress.Utils.PointFloat(10.87499F, 38.87498F);
     this.xrLine2.Name           = "xrLine2";
     this.xrLine2.SizeF          = new System.Drawing.SizeF(480.0001F, 2F);
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2,
         this.xrLabel4,
         this.xrLabel5,
         this.xrShape1
     });
     this.PageHeader.HeightF = 41.87498F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrShape1
     //
     this.xrShape1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Tag", "[Parameters].[DocNumber]")
     });
     this.xrShape1.FillColor     = System.Drawing.Color.LimeGreen;
     this.xrShape1.LineWidth     = 0;
     this.xrShape1.LocationFloat = new DevExpress.Utils.PointFloat(9.999943F, 2.499994F);
     this.xrShape1.Name          = "xrShape1";
     this.xrShape1.Shape         = shapeRectangle1;
     this.xrShape1.SizeF         = new System.Drawing.SizeF(480.0001F, 38.375F);
     this.xrShape1.Stretch       = true;
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumSum([TotalCost])")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(252.5F, 4F);
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(100F, 15F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     xrSummary2.Running                           = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel6.Summary                        = xrSummary2;
     this.xrLabel6.Text                           = "xrLabel6";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrLabel6.TextFormatString               = "{0:n2}";
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6
     });
     this.ReportFooter.HeightF = 63.54167F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrLabel10
     //
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(9.999943F, 10.00001F);
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(49.99998F, 23F);
     this.xrLabel10.Text          = "doc#";
     //
     // xrLabel9
     //
     this.xrLabel9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[EntityCode]")
     });
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(76.24996F, 32.99999F);
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(162.5F, 23F);
     this.xrLabel9.Text          = "xrLabel9";
     //
     // xrLabel8
     //
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Parameters].[DocNum]")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(76.24996F, 10.00001F);
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(162.5F, 23F);
     this.xrLabel8.Text          = "xrLabel8";
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumSum([EdittedTotalCost])")
     });
     this.xrLabel7.Font                           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(366.375F, 3.999996F);
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(118.625F, 15F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     xrSummary3.Running                           = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel7.Summary                        = xrSummary3;
     this.xrLabel7.Text                           = "xrLabel6";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.xrLabel7.TextFormatString               = "{0:n2}";
     //
     // MRPReportSummary
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportFooter
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "MRPSummaryPreview";
     this.DataSource   = this.sqlDataSource1;
     this.FilterString = "[DocNumber] = ?DocNum And [Entity] = ?EntityCode";
     this.Margins      = new System.Drawing.Printing.Margins(100, 251, 16, 42);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.DocNum,
         this.EntityCode
     });
     this.Version = "17.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 private void InitializeComponent()
 {
     DevExpress.XtraPrinting.Shape.ShapeBracket   shapeBracket1   = new DevExpress.XtraPrinting.Shape.ShapeBracket();
     DevExpress.XtraPrinting.Shape.ShapeStar      shapeStar1      = new DevExpress.XtraPrinting.Shape.ShapeStar();
     DevExpress.XtraPrinting.Shape.ShapeLine      shapeLine1      = new DevExpress.XtraPrinting.Shape.ShapeLine();
     DevExpress.XtraPrinting.Shape.ShapeCross     shapeCross1     = new DevExpress.XtraPrinting.Shape.ShapeCross();
     DevExpress.XtraPrinting.Shape.ShapePolygon   shapePolygon1   = new DevExpress.XtraPrinting.Shape.ShapePolygon();
     DevExpress.XtraPrinting.Shape.ShapeArrow     shapeArrow1     = new DevExpress.XtraPrinting.Shape.ShapeArrow();
     DevExpress.XtraPrinting.Shape.ShapeBracket   shapeBracket2   = new DevExpress.XtraPrinting.Shape.ShapeBracket();
     DevExpress.XtraPrinting.Shape.ShapeBrace     shapeBrace1     = new DevExpress.XtraPrinting.Shape.ShapeBrace();
     DevExpress.XtraPrinting.Shape.ShapeStar      shapeStar2      = new DevExpress.XtraPrinting.Shape.ShapeStar();
     DevExpress.XtraPrinting.Shape.ShapeStar      shapeStar3      = new DevExpress.XtraPrinting.Shape.ShapeStar();
     DevExpress.XtraPrinting.Shape.ShapeLine      shapeLine2      = new DevExpress.XtraPrinting.Shape.ShapeLine();
     DevExpress.XtraPrinting.Shape.ShapeBrace     shapeBrace2     = new DevExpress.XtraPrinting.Shape.ShapeBrace();
     DevExpress.XtraPrinting.Shape.ShapeRectangle shapeRectangle1 = new DevExpress.XtraPrinting.Shape.ShapeRectangle();
     DevExpress.XtraPrinting.Shape.ShapeArrow     shapeArrow2     = new DevExpress.XtraPrinting.Shape.ShapeArrow();
     DevExpress.XtraPrinting.Shape.ShapeStar      shapeStar4      = new DevExpress.XtraPrinting.Shape.ShapeStar();
     DevExpress.XtraPrinting.Shape.ShapePolygon   shapePolygon2   = new DevExpress.XtraPrinting.Shape.ShapePolygon();
     DevExpress.XtraPrinting.Shape.ShapeLine      shapeLine3      = new DevExpress.XtraPrinting.Shape.ShapeLine();
     DevExpress.XtraPrinting.Shape.ShapePolygon   shapePolygon6   = new DevExpress.XtraPrinting.Shape.ShapePolygon();
     DevExpress.XtraPrinting.Shape.ShapeLine      shapeLine4      = new DevExpress.XtraPrinting.Shape.ShapeLine();
     DevExpress.XtraPrinting.Shape.ShapePolygon   shapePolygon5   = new DevExpress.XtraPrinting.Shape.ShapePolygon();
     DevExpress.XtraPrinting.Shape.ShapeCross     shapeCross2     = new DevExpress.XtraPrinting.Shape.ShapeCross();
     DevExpress.XtraPrinting.Shape.ShapePolygon   shapePolygon4   = new DevExpress.XtraPrinting.Shape.ShapePolygon();
     DevExpress.XtraPrinting.Shape.ShapeRectangle shapeRectangle2 = new DevExpress.XtraPrinting.Shape.ShapeRectangle();
     DevExpress.XtraPrinting.Shape.ShapeArrow     shapeArrow4     = new DevExpress.XtraPrinting.Shape.ShapeArrow();
     DevExpress.XtraPrinting.Shape.ShapePolygon   shapePolygon3   = new DevExpress.XtraPrinting.Shape.ShapePolygon();
     DevExpress.XtraPrinting.Shape.ShapeArrow     shapeArrow3     = new DevExpress.XtraPrinting.Shape.ShapeArrow();
     DevExpress.XtraPrinting.Shape.ShapeStar      shapeStar5      = new DevExpress.XtraPrinting.Shape.ShapeStar();
     this.xrShape28         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape14         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape19         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape26         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape9          = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape5          = new DevExpress.XtraReports.UI.XRShape();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrShape22         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape24         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape15         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape12         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape20         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape23         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape1          = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape3          = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape13         = new DevExpress.XtraReports.UI.XRShape();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.xrShape27         = new DevExpress.XtraReports.UI.XRShape();
     this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrShape18         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape6          = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape17         = new DevExpress.XtraReports.UI.XRShape();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrShape8          = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape21         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape2          = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape10         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape25         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape4          = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape11         = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape7          = new DevExpress.XtraReports.UI.XRShape();
     this.xrShape16         = new DevExpress.XtraReports.UI.XRShape();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // xrShape28
     //
     this.xrShape28.Angle         = 180;
     this.xrShape28.BorderWidth   = 1F;
     this.xrShape28.FillColor     = System.Drawing.Color.Red;
     this.xrShape28.LineWidth     = 2;
     this.xrShape28.LocationFloat = new DevExpress.Utils.PointFloat(175F, 600F);
     this.xrShape28.Name          = "xrShape28";
     this.xrShape28.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape28.Shape         = shapeBracket1;
     this.xrShape28.SizeF         = new System.Drawing.SizeF(133F, 83F);
     this.xrShape28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape14
     //
     this.xrShape14.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))));
     this.xrShape14.LineWidth     = 0;
     this.xrShape14.LocationFloat = new DevExpress.Utils.PointFloat(333F, 308F);
     this.xrShape14.Name          = "xrShape14";
     this.xrShape14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeStar1.Concavity         = 35F;
     shapeStar1.StarPointCount    = 6;
     this.xrShape14.Shape         = shapeStar1;
     this.xrShape14.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape19
     //
     this.xrShape19.Angle         = 45;
     this.xrShape19.BorderWidth   = 1F;
     this.xrShape19.LineWidth     = 2;
     this.xrShape19.LocationFloat = new DevExpress.Utils.PointFloat(333F, 508F);
     this.xrShape19.Name          = "xrShape19";
     this.xrShape19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape19.Shape         = shapeLine1;
     this.xrShape19.SizeF         = new System.Drawing.SizeF(133F, 83F);
     this.xrShape19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape26
     //
     this.xrShape26.Angle            = 45;
     this.xrShape26.FillColor        = System.Drawing.Color.Silver;
     this.xrShape26.LineWidth        = 0;
     this.xrShape26.LocationFloat    = new DevExpress.Utils.PointFloat(200F, 417F);
     this.xrShape26.Name             = "xrShape26";
     this.xrShape26.Padding          = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeCross1.Fillet              = 100;
     shapeCross1.HorizontalLineWidth = 30;
     shapeCross1.VerticalLineWidth   = 30;
     this.xrShape26.Shape            = shapeCross1;
     this.xrShape26.SizeF            = new System.Drawing.SizeF(83F, 84F);
     this.xrShape26.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape9
     //
     this.xrShape9.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(190)))), ((int)(((byte)(141)))));
     this.xrShape9.LineWidth     = 0;
     this.xrShape9.LocationFloat = new DevExpress.Utils.PointFloat(17F, 208F);
     this.xrShape9.Name          = "xrShape9";
     this.xrShape9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapePolygon1.Fillet        = 20;
     shapePolygon1.NumberOfSides = 5;
     this.xrShape9.Shape         = shapePolygon1;
     this.xrShape9.SizeF         = new System.Drawing.SizeF(133F, 91F);
     this.xrShape9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape5
     //
     this.xrShape5.Angle         = 180;
     this.xrShape5.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(199)))), ((int)(((byte)(213)))));
     this.xrShape5.LineWidth     = 0;
     this.xrShape5.LocationFloat = new DevExpress.Utils.PointFloat(333F, 108F);
     this.xrShape5.Name          = "xrShape5";
     this.xrShape5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeArrow1.ArrowHeight     = 30;
     shapeArrow1.Fillet          = 30;
     this.xrShape5.Shape         = shapeArrow1;
     this.xrShape5.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Font          = new System.Drawing.Font("Times New Roman", 24F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.ForeColor     = System.Drawing.Color.Maroon;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(50F, 25F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(567F, 50F);
     this.xrLabel1.Text          = "Shapes supported by XtraReports:";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.ReportHeader.HeightF       = 91F;
     this.ReportHeader.Name          = "ReportHeader";
     this.ReportHeader.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape22
     //
     this.xrShape22.BorderWidth   = 1F;
     this.xrShape22.FillColor     = System.Drawing.Color.Red;
     this.xrShape22.LineWidth     = 2;
     this.xrShape22.LocationFloat = new DevExpress.Utils.PointFloat(17F, 600F);
     this.xrShape22.Name          = "xrShape22";
     this.xrShape22.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape22.Shape         = shapeBracket2;
     this.xrShape22.SizeF         = new System.Drawing.SizeF(133F, 83F);
     this.xrShape22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape24
     //
     this.xrShape24.Angle         = 180;
     this.xrShape24.BorderWidth   = 1F;
     this.xrShape24.LineWidth     = 2;
     this.xrShape24.LocationFloat = new DevExpress.Utils.PointFloat(492F, 600F);
     this.xrShape24.Name          = "xrShape24";
     this.xrShape24.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape24.Shape         = shapeBrace1;
     this.xrShape24.SizeF         = new System.Drawing.SizeF(133F, 83F);
     this.xrShape24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape15
     //
     this.xrShape15.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(207)))), ((int)(((byte)(29)))), ((int)(((byte)(33)))));
     this.xrShape15.LineWidth     = 0;
     this.xrShape15.LocationFloat = new DevExpress.Utils.PointFloat(175F, 308F);
     this.xrShape15.Name          = "xrShape15";
     this.xrShape15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeStar2.StarPointCount    = 5;
     this.xrShape15.Shape         = shapeStar2;
     this.xrShape15.SizeF         = new System.Drawing.SizeF(134F, 92F);
     this.xrShape15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape12
     //
     this.xrShape12.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(189)))), ((int)(((byte)(113)))));
     this.xrShape12.LineWidth     = 0;
     this.xrShape12.LocationFloat = new DevExpress.Utils.PointFloat(492F, 208F);
     this.xrShape12.Name          = "xrShape12";
     this.xrShape12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape12.Shape         = shapeStar3;
     this.xrShape12.SizeF         = new System.Drawing.SizeF(133F, 91F);
     this.xrShape12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape20
     //
     this.xrShape20.Angle         = 315;
     this.xrShape20.BorderWidth   = 1F;
     this.xrShape20.LineWidth     = 2;
     this.xrShape20.LocationFloat = new DevExpress.Utils.PointFloat(492F, 508F);
     this.xrShape20.Name          = "xrShape20";
     this.xrShape20.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape20.Shape         = shapeLine2;
     this.xrShape20.SizeF         = new System.Drawing.SizeF(133F, 83F);
     this.xrShape20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape23
     //
     this.xrShape23.BorderWidth   = 1F;
     this.xrShape23.LineWidth     = 2;
     this.xrShape23.LocationFloat = new DevExpress.Utils.PointFloat(333F, 600F);
     this.xrShape23.Name          = "xrShape23";
     this.xrShape23.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape23.Shape         = shapeBrace2;
     this.xrShape23.SizeF         = new System.Drawing.SizeF(133F, 83F);
     this.xrShape23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape1
     //
     this.xrShape1.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(57)))), ((int)(((byte)(143)))), ((int)(((byte)(215)))));
     this.xrShape1.LineWidth     = 0;
     this.xrShape1.LocationFloat = new DevExpress.Utils.PointFloat(17F, 8F);
     this.xrShape1.Name          = "xrShape1";
     this.xrShape1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape1.Shape         = shapeRectangle1;
     this.xrShape1.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape3
     //
     this.xrShape3.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(107)))), ((int)(((byte)(10)))));
     this.xrShape3.LineWidth     = 0;
     this.xrShape3.LocationFloat = new DevExpress.Utils.PointFloat(17F, 108F);
     this.xrShape3.Name          = "xrShape3";
     this.xrShape3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeArrow2.Fillet          = 30;
     this.xrShape3.Shape         = shapeArrow2;
     this.xrShape3.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape13
     //
     this.xrShape13.Angle         = 45;
     this.xrShape13.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(202)))), ((int)(((byte)(149)))));
     this.xrShape13.LineWidth     = 0;
     this.xrShape13.LocationFloat = new DevExpress.Utils.PointFloat(17F, 308F);
     this.xrShape13.Name          = "xrShape13";
     this.xrShape13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeStar4.Concavity         = 60F;
     shapeStar4.Fillet            = 20;
     shapeStar4.StarPointCount    = 4;
     this.xrShape13.Shape         = shapeStar4;
     this.xrShape13.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrShape28,
         this.xrShape27,
         this.xrShape26,
         this.xrShape25,
         this.xrShape24,
         this.xrShape23,
         this.xrShape22,
         this.xrShape21,
         this.xrShape20,
         this.xrShape19,
         this.xrShape18,
         this.xrShape17,
         this.xrShape16,
         this.xrShape15,
         this.xrShape14,
         this.xrShape13,
         this.xrShape12,
         this.xrShape11,
         this.xrShape10,
         this.xrShape9,
         this.xrShape8,
         this.xrShape7,
         this.xrShape6,
         this.xrShape5,
         this.xrShape4,
         this.xrShape3,
         this.xrShape2,
         this.xrShape1
     });
     this.Detail.HeightF       = 708F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape27
     //
     this.xrShape27.Angle         = 45;
     this.xrShape27.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(197)))), ((int)(((byte)(238)))));
     this.xrShape27.LineWidth     = 0;
     this.xrShape27.LocationFloat = new DevExpress.Utils.PointFloat(492F, 408F);
     this.xrShape27.Name          = "xrShape27";
     this.xrShape27.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapePolygon2.Fillet         = 75;
     shapePolygon2.NumberOfSides  = 4;
     this.xrShape27.Shape         = shapePolygon2;
     this.xrShape27.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 100F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // xrShape18
     //
     this.xrShape18.Angle         = 90;
     this.xrShape18.BorderWidth   = 1F;
     this.xrShape18.FillColor     = System.Drawing.Color.Red;
     this.xrShape18.LineWidth     = 2;
     this.xrShape18.LocationFloat = new DevExpress.Utils.PointFloat(175F, 508F);
     this.xrShape18.Name          = "xrShape18";
     this.xrShape18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape18.Shape         = shapeLine3;
     this.xrShape18.SizeF         = new System.Drawing.SizeF(134F, 83F);
     this.xrShape18.Stretch       = true;
     this.xrShape18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape6
     //
     this.xrShape6.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(106)))), ((int)(((byte)(14)))));
     this.xrShape6.LineWidth     = 0;
     this.xrShape6.LocationFloat = new DevExpress.Utils.PointFloat(492F, 8F);
     this.xrShape6.Name          = "xrShape6";
     this.xrShape6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapePolygon6.Fillet        = 30;
     this.xrShape6.Shape         = shapePolygon6;
     this.xrShape6.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape17
     //
     this.xrShape17.BorderWidth   = 1F;
     this.xrShape17.LineWidth     = 2;
     this.xrShape17.LocationFloat = new DevExpress.Utils.PointFloat(17F, 508F);
     this.xrShape17.Name          = "xrShape17";
     this.xrShape17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape17.Shape         = shapeLine4;
     this.xrShape17.SizeF         = new System.Drawing.SizeF(133F, 83F);
     this.xrShape17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 100F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // xrShape8
     //
     this.xrShape8.FillColor     = System.Drawing.Color.Gray;
     this.xrShape8.LineWidth     = 0;
     this.xrShape8.LocationFloat = new DevExpress.Utils.PointFloat(333F, 408F);
     this.xrShape8.Name          = "xrShape8";
     this.xrShape8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapePolygon5.NumberOfSides = 4;
     this.xrShape8.Shape         = shapePolygon5;
     this.xrShape8.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape21
     //
     this.xrShape21.FillColor        = System.Drawing.Color.DodgerBlue;
     this.xrShape21.LineWidth        = 0;
     this.xrShape21.LocationFloat    = new DevExpress.Utils.PointFloat(17F, 408F);
     this.xrShape21.Name             = "xrShape21";
     this.xrShape21.Padding          = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeCross2.HorizontalLineWidth = 40;
     shapeCross2.VerticalLineWidth   = 40;
     this.xrShape21.Shape            = shapeCross2;
     this.xrShape21.SizeF            = new System.Drawing.SizeF(133F, 92F);
     this.xrShape21.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape2
     //
     this.xrShape2.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(205)))), ((int)(((byte)(28)))));
     this.xrShape2.LineWidth     = 0;
     this.xrShape2.LocationFloat = new DevExpress.Utils.PointFloat(333F, 8F);
     this.xrShape2.Name          = "xrShape2";
     this.xrShape2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrShape2.SizeF         = new System.Drawing.SizeF(134F, 92F);
     this.xrShape2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape10
     //
     this.xrShape10.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(111)))), ((int)(((byte)(191)))));
     this.xrShape10.LineWidth     = 0;
     this.xrShape10.LocationFloat = new DevExpress.Utils.PointFloat(333F, 208F);
     this.xrShape10.Name          = "xrShape10";
     this.xrShape10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapePolygon4.NumberOfSides  = 8;
     this.xrShape10.Shape         = shapePolygon4;
     this.xrShape10.SizeF         = new System.Drawing.SizeF(133F, 91F);
     this.xrShape10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape25
     //
     this.xrShape25.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(131)))), ((int)(((byte)(197)))), ((int)(((byte)(33)))));
     this.xrShape25.LineWidth     = 0;
     this.xrShape25.LocationFloat = new DevExpress.Utils.PointFloat(175F, 8F);
     this.xrShape25.Name          = "xrShape25";
     this.xrShape25.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeRectangle2.Fillet       = 20;
     this.xrShape25.Shape         = shapeRectangle2;
     this.xrShape25.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape4
     //
     this.xrShape4.Angle         = 90;
     this.xrShape4.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(173)))), ((int)(((byte)(91)))), ((int)(((byte)(217)))));
     this.xrShape4.LineWidth     = 0;
     this.xrShape4.LocationFloat = new DevExpress.Utils.PointFloat(175F, 108F);
     this.xrShape4.Name          = "xrShape4";
     this.xrShape4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeArrow4.ArrowWidth      = 30;
     shapeArrow4.Fillet          = 30;
     this.xrShape4.Shape         = shapeArrow4;
     this.xrShape4.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape11
     //
     this.xrShape11.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(186)))), ((int)(((byte)(200)))), ((int)(((byte)(89)))));
     this.xrShape11.LineWidth     = 0;
     this.xrShape11.LocationFloat = new DevExpress.Utils.PointFloat(175F, 208F);
     this.xrShape11.Name          = "xrShape11";
     this.xrShape11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapePolygon3.NumberOfSides  = 6;
     this.xrShape11.Shape         = shapePolygon3;
     this.xrShape11.SizeF         = new System.Drawing.SizeF(134F, 91F);
     this.xrShape11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape7
     //
     this.xrShape7.Angle         = 270;
     this.xrShape7.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(102)))), ((int)(((byte)(173)))));
     this.xrShape7.LineWidth     = 0;
     this.xrShape7.LocationFloat = new DevExpress.Utils.PointFloat(492F, 108F);
     this.xrShape7.Name          = "xrShape7";
     this.xrShape7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeArrow3.ArrowHeight     = 40;
     shapeArrow3.ArrowWidth      = 40;
     shapeArrow3.Fillet          = 30;
     this.xrShape7.Shape         = shapeArrow3;
     this.xrShape7.SizeF         = new System.Drawing.SizeF(134F, 92F);
     this.xrShape7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrShape16
     //
     this.xrShape16.FillColor     = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(84)))), ((int)(((byte)(172)))));
     this.xrShape16.LineWidth     = 0;
     this.xrShape16.LocationFloat = new DevExpress.Utils.PointFloat(492F, 308F);
     this.xrShape16.Name          = "xrShape16";
     this.xrShape16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     shapeStar5.StarPointCount    = 8;
     this.xrShape16.Shape         = shapeStar5;
     this.xrShape16.SizeF         = new System.Drawing.SizeF(133F, 92F);
     this.xrShape16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Shapes
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.ReportHeader,
         this.topMarginBand1,
         this.bottomMarginBand1
     });
     this.Version = "14.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }