/// <summary>
        /// 设置Farpoint过滤功能,符合/不符合过滤条件的行将背景色将根据参数中设置的颜色进行显示
        /// </summary>
        /// <param name="fp"></param>
        /// <param name="fitColor">符合过滤条件的数据背景色</param>
        /// <param name="notFitColor">不符合过滤条件的数据背景色</param>
        /// <param name="filterColumnIdxs">需要过滤功能的列</param>
        static public void SetFpCustomFilterProperties(FarPoint.Win.Spread.FpSpread fp, Color fitColor, Color notFitColor, int[] filterColumnIdxs)
        {
            if (filterColumnIdxs == null || filterColumnIdxs.Length == 0)
            {
                return;
            }

            FarPoint.Win.Spread.NamedStyle inStyle  = new FarPoint.Win.Spread.NamedStyle();
            FarPoint.Win.Spread.NamedStyle outStyle = new FarPoint.Win.Spread.NamedStyle();
            inStyle.BackColor  = fitColor;
            outStyle.BackColor = notFitColor;
            //被过滤掉的行会按照自定义样式进行显示
            FarPoint.Win.Spread.StyleRowFilter rowFilter = new FarPoint.Win.Spread.StyleRowFilter(fp.ActiveSheet, inStyle, outStyle);
            rowFilter.FilterFrozenRows = false;//冻结行不进行过滤

            //非空行字符串
            rowFilter.NonBlanksString = Const.NONBLANK_STRING;
            //全部字符串,选择全部时过滤内容会没有符合条件的,因此ALL_STRING定义为“取消”
            rowFilter.AllString = Const.ALL_STRING;
            //空行字符串
            rowFilter.BlanksString = Const.BLANK_STRING;


            int fcLen = filterColumnIdxs.Length;

            string[] curFilters = new string[fcLen];
            for (int i = 0; i < fcLen; i++)
            {
                curFilters[i] = fp.ActiveSheet.RowFilter.GetColumnFilterBy(filterColumnIdxs[i]);
                //第二个参数为取消显示“非空白行”过滤条件
                FarPoint.Win.Spread.FilterColumnDefinition fcd = new FarPoint.Win.Spread.FilterColumnDefinition(filterColumnIdxs[i],
                                                                                                                ~FarPoint.Win.Spread.FilterListBehavior.NonBlank & ~FarPoint.Win.Spread.FilterListBehavior.Blank);//取消显示“非空白行”和“空白行”过滤条件
                rowFilter.AddColumn(fcd);
            }

            fp.ActiveSheet.RowFilter = rowFilter;

            //按照先前选中的过滤方式过滤
            for (int i = 0; i < fcLen; i++)
            {
                if (curFilters[i] != null && curFilters[i].Length != 0)
                {
                    fp.ActiveSheet.AutoFilterColumn(filterColumnIdxs[i], curFilters[i], 0);
                }
            }
        }
示例#2
0
 /// <summary>
 /// 디자이너 지원에 필요한 메서드입니다.
 /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer1 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer1    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle1 = new FarPoint.Win.Spread.NamedStyle("Style1");
     FarPoint.Win.Spread.CellType.GeneralCellType generalCellType1 = new FarPoint.Win.Spread.CellType.GeneralCellType();
     FarPoint.Win.Spread.SpreadSkin spreadSkin1 = new FarPoint.Win.Spread.SpreadSkin();
     FarPoint.Win.Spread.NamedStyle namedStyle2 = new FarPoint.Win.Spread.NamedStyle("ColumnHeaderEnhanced");
     FarPoint.Win.Spread.NamedStyle namedStyle3 = new FarPoint.Win.Spread.NamedStyle("CornerEnhanced");
     FarPoint.Win.Spread.CellType.EnhancedCornerRenderer enhancedCornerRenderer1 = new FarPoint.Win.Spread.CellType.EnhancedCornerRenderer();
     System.ComponentModel.ComponentResourceManager      resources = new System.ComponentModel.ComponentResourceManager(typeof(MAT070503_P1));
     FarPoint.Win.Spread.EnhancedInterfaceRenderer       enhancedInterfaceRenderer1 = new FarPoint.Win.Spread.EnhancedInterfaceRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle4 = new FarPoint.Win.Spread.NamedStyle("RowHeaderEnhanced");
     FarPoint.Win.Spread.EnhancedScrollBarRenderer enhancedScrollBarRenderer1 = new FarPoint.Win.Spread.EnhancedScrollBarRenderer();
     this.spdData         = new Miracom.SmartWeb.UI.Controls.udcFarPoint(this.components);
     this.spdData_Sheet1  = new FarPoint.Win.Spread.SheetView();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.btnOk           = new System.Windows.Forms.Button();
     this.btnExcel        = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.spdData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spdData_Sheet1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     enhancedColumnHeaderRenderer1.Name = "enhancedColumnHeaderRenderer1";
     enhancedColumnHeaderRenderer1.TextRotationAngle = 0;
     enhancedRowHeaderRenderer1.Name = "enhancedRowHeaderRenderer1";
     enhancedRowHeaderRenderer1.TextRotationAngle = 0;
     //
     // spdData
     //
     this.spdData.About = "4.0.2001.2005";
     this.spdData.AccessibleDescription = "";
     this.spdData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.spdData.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.spdData.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.Never;
     this.spdData.Location = new System.Drawing.Point(0, 0);
     this.spdData.Name     = "spdData";
     namedStyle1.BackColor = System.Drawing.SystemColors.Window;
     namedStyle1.CellType  = generalCellType1;
     namedStyle1.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     namedStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     namedStyle1.Locked    = false;
     namedStyle1.Renderer  = generalCellType1;
     this.spdData.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] {
         namedStyle1
     });
     this.spdData.RPT_IsPreCellsType   = true;
     this.spdData.ScrollBarTrackPolicy = FarPoint.Win.Spread.ScrollBarTrackPolicy.Both;
     this.spdData.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.spdData_Sheet1
     });
     this.spdData.Size                    = new System.Drawing.Size(667, 361);
     namedStyle2.ForeColor                = System.Drawing.SystemColors.ControlText;
     namedStyle2.HorizontalAlignment      = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle2.Renderer                 = enhancedColumnHeaderRenderer1;
     namedStyle2.VerticalAlignment        = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     spreadSkin1.ColumnHeaderDefaultStyle = namedStyle2;
     namedStyle3.ForeColor                = System.Drawing.SystemColors.ControlText;
     namedStyle3.HorizontalAlignment      = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle3.Renderer                 = enhancedCornerRenderer1;
     namedStyle3.VerticalAlignment        = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     spreadSkin1.CornerDefaultStyle       = namedStyle3;
     spreadSkin1.DefaultStyle             = namedStyle1;
     spreadSkin1.FocusRenderer            = ((FarPoint.Win.Spread.IFocusIndicatorRenderer)(resources.GetObject("spreadSkin1.FocusRenderer")));
     enhancedInterfaceRenderer1.ScrollBoxBackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(161)))), ((int)(((byte)(186)))), ((int)(((byte)(221)))));
     enhancedInterfaceRenderer1.SheetTabLowerActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(210)))), ((int)(((byte)(244)))));
     enhancedInterfaceRenderer1.SheetTabLowerNormalColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(231)))), ((int)(((byte)(249)))));
     enhancedInterfaceRenderer1.SheetTabUpperActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(228)))), ((int)(((byte)(244)))));
     enhancedInterfaceRenderer1.SheetTabUpperNormalColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(229)))), ((int)(((byte)(249)))));
     enhancedInterfaceRenderer1.TabStripBackgroundColor  = System.Drawing.Color.FromArgb(((int)(((byte)(161)))), ((int)(((byte)(186)))), ((int)(((byte)(221)))));
     spreadSkin1.InterfaceRenderer = enhancedInterfaceRenderer1;
     spreadSkin1.Name                  = "CustomSkin1";
     namedStyle4.ForeColor             = System.Drawing.SystemColors.ControlText;
     namedStyle4.HorizontalAlignment   = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle4.Renderer              = enhancedRowHeaderRenderer1;
     namedStyle4.VerticalAlignment     = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     spreadSkin1.RowHeaderDefaultStyle = namedStyle4;
     spreadSkin1.ScrollBarRenderer     = enhancedScrollBarRenderer1;
     spreadSkin1.SelectionRenderer     = new FarPoint.Win.Spread.DefaultSelectionRenderer();
     this.spdData.Skin                 = spreadSkin1;
     this.spdData.TabIndex             = 1;
     //
     // spdData_Sheet1
     //
     this.spdData_Sheet1.Reset();
     this.spdData_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.spdData_Sheet1.ReferenceStyle      = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.spdData_Sheet1.DefaultStyle.Parent = "Style1";
     this.spdData_Sheet1.ReferenceStyle      = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.spdData);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.btnOk);
     this.splitContainer1.Panel2.Controls.Add(this.btnExcel);
     this.splitContainer1.Size             = new System.Drawing.Size(667, 407);
     this.splitContainer1.SplitterDistance = 361;
     this.splitContainer1.TabIndex         = 2;
     //
     // btnOk
     //
     this.btnOk.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOk.Location = new System.Drawing.Point(600, 3);
     this.btnOk.Name     = "btnOk";
     this.btnOk.Size     = new System.Drawing.Size(64, 25);
     this.btnOk.TabIndex = 0;
     this.btnOk.Text     = "Okay";
     this.btnOk.UseVisualStyleBackColor = true;
     this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
     //
     // btnExcel
     //
     this.btnExcel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExcel.Location = new System.Drawing.Point(531, 3);
     this.btnExcel.Name     = "btnExcel";
     this.btnExcel.Size     = new System.Drawing.Size(64, 25);
     this.btnExcel.TabIndex = 0;
     this.btnExcel.Text     = "Save";
     this.btnExcel.UseVisualStyleBackColor = true;
     this.btnExcel.Click += new System.EventHandler(this.btnExcel_Click);
     //
     // MAT070503_P1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(667, 407);
     this.Controls.Add(this.splitContainer1);
     this.Font          = new System.Drawing.Font("Tahoma", 8.25F);
     this.Name          = "MAT070503_P1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Quantity by Expiration Date";
     ((System.ComponentModel.ISupportInitialize)(this.spdData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spdData_Sheet1)).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            FarPoint.Win.Spread.NamedStyle namedStyle1 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15", "DataAreaDefault");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType1 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle2 = new FarPoint.Win.Spread.NamedStyle("Excel-0-16");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType2 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle3 = new FarPoint.Win.Spread.NamedStyle("Excel-0-17");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType3 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle4 = new FarPoint.Win.Spread.NamedStyle("Excel-0-18");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType4 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle5 = new FarPoint.Win.Spread.NamedStyle("Excel-0-19");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType5 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle6 = new FarPoint.Win.Spread.NamedStyle("Excel-0-20");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType6 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle7 = new FarPoint.Win.Spread.NamedStyle("Excel-0-21");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType7 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle8 = new FarPoint.Win.Spread.NamedStyle("Excel-0-22");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType8 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle9 = new FarPoint.Win.Spread.NamedStyle("Excel-0-23");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType9 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle10 = new FarPoint.Win.Spread.NamedStyle("Excel-0-24");
            FarPoint.Win.ComplexBorder complexBorder1 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType10 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle11 = new FarPoint.Win.Spread.NamedStyle("Excel-0-25");
            FarPoint.Win.ComplexBorder complexBorder2 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType11 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle12 = new FarPoint.Win.Spread.NamedStyle("Excel-0-26");
            FarPoint.Win.ComplexBorder complexBorder3 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType12 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle13 = new FarPoint.Win.Spread.NamedStyle("Excel-0-27");
            FarPoint.Win.ComplexBorder complexBorder4 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType13 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle14 = new FarPoint.Win.Spread.NamedStyle("Excel-0-28");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType14 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle15 = new FarPoint.Win.Spread.NamedStyle("Excel-0-29");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType15 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle16 = new FarPoint.Win.Spread.NamedStyle("Excel-0-30");
            FarPoint.Win.ComplexBorder complexBorder5 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType16 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle17 = new FarPoint.Win.Spread.NamedStyle("Excel-0-31");
            FarPoint.Win.ComplexBorder complexBorder6 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType17 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle18 = new FarPoint.Win.Spread.NamedStyle("Excel-0-32");
            FarPoint.Win.ComplexBorder complexBorder7 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType18 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle19 = new FarPoint.Win.Spread.NamedStyle("Excel-0-33");
            FarPoint.Win.ComplexBorder complexBorder8 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType19 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle20 = new FarPoint.Win.Spread.NamedStyle("Excel-0-34");
            FarPoint.Win.ComplexBorder complexBorder9 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType20 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle21 = new FarPoint.Win.Spread.NamedStyle("Excel-0-35");
            FarPoint.Win.ComplexBorder complexBorder10 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType21 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle22 = new FarPoint.Win.Spread.NamedStyle("Excel-0-36");
            FarPoint.Win.ComplexBorder complexBorder11 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType22 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle23 = new FarPoint.Win.Spread.NamedStyle("Excel-0-37");
            FarPoint.Win.ComplexBorder complexBorder12 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType23 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle24 = new FarPoint.Win.Spread.NamedStyle("Excel-0-38");
            FarPoint.Win.ComplexBorder complexBorder13 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType24 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle25 = new FarPoint.Win.Spread.NamedStyle("Excel-0-39");
            FarPoint.Win.ComplexBorder complexBorder14 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType25 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle26 = new FarPoint.Win.Spread.NamedStyle("Excel-0-40");
            FarPoint.Win.ComplexBorder complexBorder15 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType26 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle27 = new FarPoint.Win.Spread.NamedStyle("Excel-0-41");
            FarPoint.Win.ComplexBorder complexBorder16 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType27 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle28 = new FarPoint.Win.Spread.NamedStyle("Excel-0-42");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType28 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle29 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-基本数据");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType29 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle30 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-筹措表");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType30 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle31 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-还本付息表");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType31 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle32 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-成本费用表");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType32 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle33 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-全投资");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType33 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle34 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-资本金");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType34 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle35 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-损益表");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType35 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle36 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-一览表");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType36 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle37 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-参数");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType37 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle38 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-投资资金");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType38 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.TipAppearance tipAppearance1 = new FarPoint.Win.Spread.TipAppearance();
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType39 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder17 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType1 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder18 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType1 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder19 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType2 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder20 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType3 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder21 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType4 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder22 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType5 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder23 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType6 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder24 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType7 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder25 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType8 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder26 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType40 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder27 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType41 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder28 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType42 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder29 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType43 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType44 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder30 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType45 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder31 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType46 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder32 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType47 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder33 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType48 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder34 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType49 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder35 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType50 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder36 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType51 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder37 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType52 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder38 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType53 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder39 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType54 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder40 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType55 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder41 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType56 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder42 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType57 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder43 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType58 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder44 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType59 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder45 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType60 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder46 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType61 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder47 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType62 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder48 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType63 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder49 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType64 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder50 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType65 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder51 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType66 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType67 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType2 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType3 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType4 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType5 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType6 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType7 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType8 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType9 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType10 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType11 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType9 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType12 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType10 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType13 = new FarPoint.Win.Spread.CellType.NumberCellType();
            System.Globalization.CultureInfo cultureInfo = new System.Globalization.CultureInfo("zh-CN", false);
            FarPoint.Win.ComplexBorder complexBorder52 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType14 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder53 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType15 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder54 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType16 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder55 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType11 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder56 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType17 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder57 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType18 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder58 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType12 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder59 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType19 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder60 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType13 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder61 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType14 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder62 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType15 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder63 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType20 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder64 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType21 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder65 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType68 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder66 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder67 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder68 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder69 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder70 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder71 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType69 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder72 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder73 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder74 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder75 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder76 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder77 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder78 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType22 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder79 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder80 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType16 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder81 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder82 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType17 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder83 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder84 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType18 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder85 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder86 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType19 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder87 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder88 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType20 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder89 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder90 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType21 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder91 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder92 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType22 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder93 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder94 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType23 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder95 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType70 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder96 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType24 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder97 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder98 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType25 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder99 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType71 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder100 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType26 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder101 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder102 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType27 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder103 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType72 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.ComplexBorder complexBorder104 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType28 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder105 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder106 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType29 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder107 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder108 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType23 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder109 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder110 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType30 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder111 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder112 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType24 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder113 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder114 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType31 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder115 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder116 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.ComplexBorder complexBorder117 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder118 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType32 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder119 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder120 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType33 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder121 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder122 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType34 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder123 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder124 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType25 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder125 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder126 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.NumberCellType numberCellType26 = new FarPoint.Win.Spread.CellType.NumberCellType();
            FarPoint.Win.ComplexBorder complexBorder127 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder128 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.Spread.CellType.PercentCellType percentCellType35 = new FarPoint.Win.Spread.CellType.PercentCellType();
            FarPoint.Win.ComplexBorder complexBorder129 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder130 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder131 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder132 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder133 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder134 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder135 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder136 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder137 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder138 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder139 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder140 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder141 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder142 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder143 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder144 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder145 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder146 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder147 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder148 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder149 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder150 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder151 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder152 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmEconomyAnalysis));
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.treeList1 = new DevExpress.XtraTreeList.TreeList();
            this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ChapterNameTextEdit = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.RemarkMemoExEdit = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
            this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumn5 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.fpSpread1 = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet2 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet3 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet4 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet5 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet6 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet7 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet8 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet9 = new FarPoint.Win.Spread.SheetView();
            this.barManager1 = new DevExpress.XtraBars.BarManager();
            this.bar1 = new DevExpress.XtraBars.Bar();
            this.barList = new DevExpress.XtraBars.BarSubItem();
            this.barAdditem = new DevExpress.XtraBars.BarButtonItem();
            this.barAdd1item = new DevExpress.XtraBars.BarButtonItem();
            this.barEdititem = new DevExpress.XtraBars.BarButtonItem();
            this.barDelitem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barCS = new DevExpress.XtraBars.BarButtonItem();
            this.barSave = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.barPrint = new DevExpress.XtraBars.BarButtonItem();
            this.barClose = new DevExpress.XtraBars.BarButtonItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ChapterNameTextEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.RemarkMemoExEdit)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // splitContainerControl1
            // 
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 34);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.treeList1);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.textBox1);
            this.splitContainerControl1.Panel2.Controls.Add(this.fpSpread1);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(822, 453);
            this.splitContainerControl1.SplitterPosition = 199;
            this.splitContainerControl1.TabIndex = 0;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // treeList1
            // 
            this.treeList1.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.treeList1.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
            this.treeListColumn1,
            this.treeListColumn2,
            this.treeListColumn3,
            this.treeListColumn4,
            this.treeListColumn5});
            this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeList1.KeyFieldName = "UID";
            this.treeList1.Location = new System.Drawing.Point(0, 0);
            this.treeList1.Name = "treeList1";
            this.treeList1.OptionsBehavior.AutoFocusNewNode = true;
            this.treeList1.OptionsSelection.InvertSelection = true;
            this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.ChapterNameTextEdit,
            this.RemarkMemoExEdit});
            this.treeList1.Size = new System.Drawing.Size(193, 447);
            this.treeList1.TabIndex = 0;
            this.treeList1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
            this.treeList1.DoubleClick += new System.EventHandler(this.treeList1_DoubleClick);
            // 
            // treeListColumn1
            // 
            this.treeListColumn1.Caption = "目录";
            this.treeListColumn1.ColumnEdit = this.ChapterNameTextEdit;
            this.treeListColumn1.FieldName = "Title";
            this.treeListColumn1.Name = "treeListColumn1";
            this.treeListColumn1.OptionsColumn.AllowEdit = false;
            this.treeListColumn1.VisibleIndex = 0;
            // 
            // ChapterNameTextEdit
            // 
            this.ChapterNameTextEdit.AutoHeight = false;
            this.ChapterNameTextEdit.MaxLength = 100;
            this.ChapterNameTextEdit.Name = "ChapterNameTextEdit";
            // 
            // treeListColumn2
            // 
            this.treeListColumn2.Caption = "备注";
            this.treeListColumn2.ColumnEdit = this.RemarkMemoExEdit;
            this.treeListColumn2.FieldName = "Remark";
            this.treeListColumn2.Name = "treeListColumn2";
            // 
            // RemarkMemoExEdit
            // 
            this.RemarkMemoExEdit.AutoHeight = false;
            this.RemarkMemoExEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.RemarkMemoExEdit.MaxLength = 300;
            this.RemarkMemoExEdit.Name = "RemarkMemoExEdit";
            this.RemarkMemoExEdit.ReadOnly = true;
            // 
            // treeListColumn3
            // 
            this.treeListColumn3.Caption = "UID";
            this.treeListColumn3.FieldName = "UID";
            this.treeListColumn3.Name = "treeListColumn3";
            this.treeListColumn3.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // treeListColumn4
            // 
            this.treeListColumn4.Caption = "ParentId";
            this.treeListColumn4.FieldName = "ParentID";
            this.treeListColumn4.Name = "treeListColumn4";
            this.treeListColumn4.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // treeListColumn5
            // 
            this.treeListColumn5.Caption = "创建日期";
            this.treeListColumn5.FieldName = "CreateDate";
            this.treeListColumn5.Name = "treeListColumn5";
            this.treeListColumn5.OptionsColumn.ShowInCustomizationForm = false;
            this.treeListColumn5.SortOrder = System.Windows.Forms.SortOrder.Ascending;
            // 
            // textBox1
            // 
            this.textBox1.Location = new System.Drawing.Point(118, -385);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(100, 21);
            this.textBox1.TabIndex = 1;
            // 
            // fpSpread1
            // 
            this.fpSpread1.AccessibleDescription = "fpSpread1, 还本付息表, Row 0, Column 0, 附表3   借款还本付息计算表";
            this.fpSpread1.AllowCellOverflow = true;
            this.fpSpread1.AllowUserFormulas = true;
            this.fpSpread1.BackColor = System.Drawing.SystemColors.Control;
            this.fpSpread1.BorderCollapse = FarPoint.Win.Spread.BorderCollapse.Collapse;
            this.fpSpread1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread1.Location = new System.Drawing.Point(0, 0);
            this.fpSpread1.Name = "fpSpread1";
            namedStyle1.CellType = generalCellType1;
            namedStyle1.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle1.Locked = false;
            namedStyle1.Parent = "DataAreaDefault";
            namedStyle1.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle2.CellType = generalCellType2;
            namedStyle2.Locked = false;
            namedStyle2.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
            namedStyle3.CellType = generalCellType3;
            namedStyle3.Locked = false;
            namedStyle3.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
            namedStyle4.CellType = generalCellType4;
            namedStyle4.Locked = false;
            namedStyle4.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
            namedStyle5.CellType = generalCellType5;
            namedStyle5.Locked = false;
            namedStyle5.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
            namedStyle6.CellType = generalCellType6;
            namedStyle6.Locked = false;
            namedStyle6.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
            namedStyle7.CellType = generalCellType7;
            namedStyle7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle7.Locked = false;
            namedStyle7.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle8.CellType = generalCellType8;
            namedStyle8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle8.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle8.Locked = false;
            namedStyle8.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle9.CellType = generalCellType9;
            namedStyle9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle9.Locked = false;
            namedStyle9.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle10.Border = complexBorder1;
            namedStyle10.CellType = generalCellType10;
            namedStyle10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle10.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            namedStyle10.Locked = false;
            namedStyle10.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle11.Border = complexBorder2;
            namedStyle11.CellType = generalCellType11;
            namedStyle11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle11.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle11.Locked = false;
            namedStyle11.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle12.Border = complexBorder3;
            namedStyle12.CellType = generalCellType12;
            namedStyle12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle12.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            namedStyle12.Locked = false;
            namedStyle12.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle13.Border = complexBorder4;
            namedStyle13.CellType = generalCellType13;
            namedStyle13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle13.Locked = false;
            namedStyle13.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle14.CellType = generalCellType14;
            namedStyle14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle14.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            namedStyle14.Locked = false;
            namedStyle14.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle15.CellType = generalCellType15;
            namedStyle15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle15.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle15.Locked = false;
            namedStyle15.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle16.Border = complexBorder5;
            namedStyle16.CellType = generalCellType16;
            namedStyle16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle16.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle16.Locked = false;
            namedStyle16.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle17.Border = complexBorder6;
            namedStyle17.CellType = generalCellType17;
            namedStyle17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle17.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle17.Locked = false;
            namedStyle17.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle18.Border = complexBorder7;
            namedStyle18.CellType = generalCellType18;
            namedStyle18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle18.Locked = false;
            namedStyle18.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle19.Border = complexBorder8;
            namedStyle19.CellType = generalCellType19;
            namedStyle19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle19.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            namedStyle19.Locked = false;
            namedStyle19.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle20.Border = complexBorder9;
            namedStyle20.CellType = generalCellType20;
            namedStyle20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle20.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            namedStyle20.Locked = false;
            namedStyle20.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle21.Border = complexBorder10;
            namedStyle21.CellType = generalCellType21;
            namedStyle21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle21.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle21.Locked = false;
            namedStyle21.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle22.Border = complexBorder11;
            namedStyle22.CellType = generalCellType22;
            namedStyle22.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle22.Locked = false;
            namedStyle22.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle23.Border = complexBorder12;
            namedStyle23.CellType = generalCellType23;
            namedStyle23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle23.Locked = false;
            namedStyle23.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle24.Border = complexBorder13;
            namedStyle24.CellType = generalCellType24;
            namedStyle24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle24.Locked = false;
            namedStyle24.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle25.Border = complexBorder14;
            namedStyle25.CellType = generalCellType25;
            namedStyle25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle25.Locked = false;
            namedStyle25.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle26.Border = complexBorder15;
            namedStyle26.CellType = generalCellType26;
            namedStyle26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle26.Locked = false;
            namedStyle26.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle27.Border = complexBorder16;
            namedStyle27.CellType = generalCellType27;
            namedStyle27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle27.Locked = false;
            namedStyle27.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle28.CellType = generalCellType28;
            namedStyle28.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle28.Locked = false;
            namedStyle28.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle29.CellType = generalCellType29;
            namedStyle29.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle29.Locked = false;
            namedStyle29.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle30.CellType = generalCellType30;
            namedStyle30.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle30.Locked = false;
            namedStyle30.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle31.CellType = generalCellType31;
            namedStyle31.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle31.Locked = false;
            namedStyle31.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle32.CellType = generalCellType32;
            namedStyle32.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle32.Locked = false;
            namedStyle32.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle33.CellType = generalCellType33;
            namedStyle33.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle33.Locked = false;
            namedStyle33.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle34.CellType = generalCellType34;
            namedStyle34.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle34.Locked = false;
            namedStyle34.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle35.CellType = generalCellType35;
            namedStyle35.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle35.Locked = false;
            namedStyle35.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle36.CellType = generalCellType36;
            namedStyle36.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle36.Locked = false;
            namedStyle36.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle37.CellType = generalCellType37;
            namedStyle37.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle37.Locked = false;
            namedStyle37.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle38.CellType = generalCellType38;
            namedStyle38.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle38.Locked = false;
            namedStyle38.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] {
            namedStyle1,
            namedStyle2,
            namedStyle3,
            namedStyle4,
            namedStyle5,
            namedStyle6,
            namedStyle7,
            namedStyle8,
            namedStyle9,
            namedStyle10,
            namedStyle11,
            namedStyle12,
            namedStyle13,
            namedStyle14,
            namedStyle15,
            namedStyle16,
            namedStyle17,
            namedStyle18,
            namedStyle19,
            namedStyle20,
            namedStyle21,
            namedStyle22,
            namedStyle23,
            namedStyle24,
            namedStyle25,
            namedStyle26,
            namedStyle27,
            namedStyle28,
            namedStyle29,
            namedStyle30,
            namedStyle31,
            namedStyle32,
            namedStyle33,
            namedStyle34,
            namedStyle35,
            namedStyle36,
            namedStyle37,
            namedStyle38});
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
            this.fpSpread1_Sheet1,
            this.fpSpread1_Sheet2,
            this.fpSpread1_Sheet3,
            this.fpSpread1_Sheet4,
            this.fpSpread1_Sheet5,
            this.fpSpread1_Sheet6,
            this.fpSpread1_Sheet7,
            this.fpSpread1_Sheet8,
            this.fpSpread1_Sheet9});
            this.fpSpread1.Size = new System.Drawing.Size(613, 447);
            this.fpSpread1.TabIndex = 0;
            this.fpSpread1.TabStrip.ActiveSheetTab.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
            this.fpSpread1.TabStrip.ActiveSheetTab.Size = -1;
            this.fpSpread1.TabStrip.DefaultSheetTab.Font = new System.Drawing.Font("Tahoma", 8F);
            this.fpSpread1.TabStrip.DefaultSheetTab.Size = -1;
            this.fpSpread1.TabStripPolicy = FarPoint.Win.Spread.TabStripPolicy.Always;
            this.fpSpread1.TabStripRatio = 0.664188351920694;
            tipAppearance1.BackColor = System.Drawing.SystemColors.Info;
            tipAppearance1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            tipAppearance1.ForeColor = System.Drawing.SystemColors.InfoText;
            this.fpSpread1.TextTipAppearance = tipAppearance1;
            this.fpSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread1.CellClick += new FarPoint.Win.Spread.CellClickEventHandler(this.fpSpread1_CellClick);
            this.fpSpread1.Change += new FarPoint.Win.Spread.ChangeEventHandler(this.fpSpread1_Change);
            this.fpSpread1.ActiveSheetIndex = 2;
            // 
            // fpSpread1_Sheet1
            // 
            this.fpSpread1_Sheet1.Reset();
            this.fpSpread1_Sheet1.SheetName = "基本数据";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet1.ColumnCount = 2;
            this.fpSpread1_Sheet1.RowCount = 14;
            this.fpSpread1_Sheet1.AutoUpdateNotes = true;
            this.fpSpread1_Sheet1.Cells.Get(0, 0).CellType = generalCellType39;
            this.fpSpread1_Sheet1.Cells.Get(0, 0).ColumnSpan = 2;
            this.fpSpread1_Sheet1.Cells.Get(0, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet1.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(0, 0).Value = "附表1  电网规划经济评价基本数据";
            this.fpSpread1_Sheet1.Cells.Get(0, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(1, 0).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet1.Cells.Get(1, 0).Value = " ";
            this.fpSpread1_Sheet1.Cells.Get(1, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet1.Cells.Get(2, 0).StyleName = "Excel-0-24";
            this.fpSpread1_Sheet1.Cells.Get(2, 0).Value = "经营成本";
            this.fpSpread1_Sheet1.Cells.Get(2, 1).StyleName = "Excel-0-25";
            this.fpSpread1_Sheet1.Cells.Get(2, 1).Value = "新增固定资产原值的5%";
            this.fpSpread1_Sheet1.Cells.Get(3, 0).StyleName = "Excel-0-26";
            this.fpSpread1_Sheet1.Cells.Get(3, 0).Value = "还贷期";
            this.fpSpread1_Sheet1.Cells.Get(3, 1).Border = complexBorder17;
            numberCellType1.DecimalPlaces = 0;
            numberCellType1.MaximumValue = 10000000;
            numberCellType1.MinimumValue = -10000000;
            this.fpSpread1_Sheet1.Cells.Get(3, 1).CellType = numberCellType1;
            this.fpSpread1_Sheet1.Cells.Get(3, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet1.Cells.Get(3, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet1.Cells.Get(4, 0).StyleName = "Excel-0-26";
            this.fpSpread1_Sheet1.Cells.Get(4, 0).Value = "实际贷款年利率";
            this.fpSpread1_Sheet1.Cells.Get(4, 1).Border = complexBorder18;
            percentCellType1.FixedPoint = true;
            percentCellType1.PercentSign = "%";
            this.fpSpread1_Sheet1.Cells.Get(4, 1).CellType = percentCellType1;
            this.fpSpread1_Sheet1.Cells.Get(4, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet1.Cells.Get(4, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet1.Cells.Get(5, 0).StyleName = "Excel-0-26";
            this.fpSpread1_Sheet1.Cells.Get(5, 0).Value = "折旧率";
            this.fpSpread1_Sheet1.Cells.Get(5, 1).Border = complexBorder19;
            percentCellType2.FixedPoint = true;
            percentCellType2.PercentSign = "%";
            this.fpSpread1_Sheet1.Cells.Get(5, 1).CellType = percentCellType2;
            this.fpSpread1_Sheet1.Cells.Get(5, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet1.Cells.Get(5, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet1.Cells.Get(6, 0).StyleName = "Excel-0-26";
            this.fpSpread1_Sheet1.Cells.Get(6, 0).Value = "固定资产残值";
            this.fpSpread1_Sheet1.Cells.Get(6, 1).Border = complexBorder20;
            percentCellType3.FixedPoint = true;
            percentCellType3.PercentSign = "%";
            this.fpSpread1_Sheet1.Cells.Get(6, 1).CellType = percentCellType3;
            this.fpSpread1_Sheet1.Cells.Get(6, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet1.Cells.Get(6, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet1.Cells.Get(7, 0).StyleName = "Excel-0-26";
            this.fpSpread1_Sheet1.Cells.Get(7, 0).Value = "城建及教育附加税";
            this.fpSpread1_Sheet1.Cells.Get(7, 1).Border = complexBorder21;
            percentCellType4.FixedPoint = true;
            percentCellType4.PercentSign = "%";
            this.fpSpread1_Sheet1.Cells.Get(7, 1).CellType = percentCellType4;
            this.fpSpread1_Sheet1.Cells.Get(7, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet1.Cells.Get(7, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet1.Cells.Get(8, 0).StyleName = "Excel-0-26";
            this.fpSpread1_Sheet1.Cells.Get(8, 0).Value = "公积金、公益金率";
            this.fpSpread1_Sheet1.Cells.Get(8, 1).Border = complexBorder22;
            percentCellType5.FixedPoint = true;
            percentCellType5.PercentSign = "%";
            this.fpSpread1_Sheet1.Cells.Get(8, 1).CellType = percentCellType5;
            this.fpSpread1_Sheet1.Cells.Get(8, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet1.Cells.Get(8, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet1.Cells.Get(9, 0).StyleName = "Excel-0-26";
            this.fpSpread1_Sheet1.Cells.Get(9, 0).Value = "所得税率";
            this.fpSpread1_Sheet1.Cells.Get(9, 1).Border = complexBorder23;
            percentCellType6.FixedPoint = true;
            percentCellType6.PercentSign = "%";
            this.fpSpread1_Sheet1.Cells.Get(9, 1).CellType = percentCellType6;
            this.fpSpread1_Sheet1.Cells.Get(9, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet1.Cells.Get(9, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet1.Cells.Get(10, 0).StyleName = "Excel-0-26";
            this.fpSpread1_Sheet1.Cells.Get(10, 0).Value = "折旧还贷率";
            this.fpSpread1_Sheet1.Cells.Get(10, 1).Border = complexBorder24;
            percentCellType7.FixedPoint = true;
            percentCellType7.PercentSign = "%";
            this.fpSpread1_Sheet1.Cells.Get(10, 1).CellType = percentCellType7;
            this.fpSpread1_Sheet1.Cells.Get(10, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet1.Cells.Get(10, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet1.Cells.Get(11, 0).StyleName = "Excel-0-26";
            this.fpSpread1_Sheet1.Cells.Get(11, 0).Value = "股本金分利";
            this.fpSpread1_Sheet1.Cells.Get(11, 1).Border = complexBorder25;
            percentCellType8.FixedPoint = true;
            percentCellType8.PercentSign = "%";
            this.fpSpread1_Sheet1.Cells.Get(11, 1).CellType = percentCellType8;
            this.fpSpread1_Sheet1.Cells.Get(11, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet1.Cells.Get(11, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet1.Cells.Get(12, 0).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet1.Cells.Get(13, 0).StyleName = "Excel-0-28";
            this.fpSpread1_Sheet1.Cells.Get(13, 0).Value = "注:城市维护建设税税率:";
            this.fpSpread1_Sheet1.Cells.Get(13, 1).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet1.Cells.Get(13, 1).Value = "市区7%,县镇5%,其它地区1%;教育费附加3%";
            this.fpSpread1_Sheet1.ColumnHeader.AutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
            this.fpSpread1_Sheet1.Columns.Default.Width = 64F;
            this.fpSpread1_Sheet1.Columns.Get(0).Width = 160F;
            this.fpSpread1_Sheet1.Columns.Get(1).Width = 284F;
            this.fpSpread1_Sheet1.DefaultStyleName = "Excel-0-15";
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet1.Rows.Get(0).Height = 30F;
            // 
            // fpSpread1_Sheet2
            // 
            this.fpSpread1_Sheet2.Reset();
            this.fpSpread1_Sheet2.SheetName = "筹措表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet2.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet2.ColumnCount = 50;
            this.fpSpread1_Sheet2.RowCount = 15;
            this.fpSpread1_Sheet2.AutoUpdateNotes = true;
            this.fpSpread1_Sheet2.Cells.Get(0, 0).StyleName = "Excel-0-29";
            this.fpSpread1_Sheet2.Cells.Get(0, 0).Value = "附表2 投资总额和资金筹措表";
            this.fpSpread1_Sheet2.Cells.Get(0, 1).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet2.Cells.Get(0, 2).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet2.Cells.Get(0, 3).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet2.Cells.Get(1, 0).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet2.Cells.Get(1, 1).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet2.Cells.Get(1, 2).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet2.Cells.Get(1, 3).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet2.Cells.Get(2, 0).Border = complexBorder26;
            this.fpSpread1_Sheet2.Cells.Get(2, 0).CellType = generalCellType40;
            this.fpSpread1_Sheet2.Cells.Get(2, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(2, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(2, 0).Value = "序   号";
            this.fpSpread1_Sheet2.Cells.Get(2, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(2, 1).Border = complexBorder27;
            this.fpSpread1_Sheet2.Cells.Get(2, 1).CellType = generalCellType41;
            this.fpSpread1_Sheet2.Cells.Get(2, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(2, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(2, 1).Value = "项   目";
            this.fpSpread1_Sheet2.Cells.Get(2, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(2, 2).StyleName = "Excel-0-29";
            this.fpSpread1_Sheet2.Cells.Get(2, 3).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet2.Cells.Get(3, 0).Border = complexBorder28;
            this.fpSpread1_Sheet2.Cells.Get(3, 0).CellType = generalCellType42;
            this.fpSpread1_Sheet2.Cells.Get(3, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(3, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(3, 0).Value = 1;
            this.fpSpread1_Sheet2.Cells.Get(3, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(3, 1).Border = complexBorder29;
            this.fpSpread1_Sheet2.Cells.Get(3, 1).CellType = generalCellType43;
            this.fpSpread1_Sheet2.Cells.Get(3, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(3, 1).Value = "投资总额";
            this.fpSpread1_Sheet2.Cells.Get(3, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(3, 2).CellType = generalCellType44;
            this.fpSpread1_Sheet2.Cells.Get(3, 2).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(3, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet2.Cells.Get(3, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(4, 0).Border = complexBorder30;
            this.fpSpread1_Sheet2.Cells.Get(4, 0).CellType = generalCellType45;
            this.fpSpread1_Sheet2.Cells.Get(4, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(4, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(4, 0).Value = 1.1;
            this.fpSpread1_Sheet2.Cells.Get(4, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(4, 1).Border = complexBorder31;
            this.fpSpread1_Sheet2.Cells.Get(4, 1).CellType = generalCellType46;
            this.fpSpread1_Sheet2.Cells.Get(4, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(4, 1).Value = "建设静态投资";
            this.fpSpread1_Sheet2.Cells.Get(4, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(4, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet2.Cells.Get(5, 0).Border = complexBorder32;
            this.fpSpread1_Sheet2.Cells.Get(5, 0).CellType = generalCellType47;
            this.fpSpread1_Sheet2.Cells.Get(5, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(5, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(5, 0).Value = 1.2;
            this.fpSpread1_Sheet2.Cells.Get(5, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(5, 1).Border = complexBorder33;
            this.fpSpread1_Sheet2.Cells.Get(5, 1).CellType = generalCellType48;
            this.fpSpread1_Sheet2.Cells.Get(5, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(5, 1).Value = "建设期利息";
            this.fpSpread1_Sheet2.Cells.Get(5, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(6, 0).Border = complexBorder34;
            this.fpSpread1_Sheet2.Cells.Get(6, 0).CellType = generalCellType49;
            this.fpSpread1_Sheet2.Cells.Get(6, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(6, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(6, 0).Value = 1.3;
            this.fpSpread1_Sheet2.Cells.Get(6, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(6, 1).Border = complexBorder35;
            this.fpSpread1_Sheet2.Cells.Get(6, 1).CellType = generalCellType50;
            this.fpSpread1_Sheet2.Cells.Get(6, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(6, 1).Value = "建设动态投资";
            this.fpSpread1_Sheet2.Cells.Get(6, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(7, 0).Border = complexBorder36;
            this.fpSpread1_Sheet2.Cells.Get(7, 0).CellType = generalCellType51;
            this.fpSpread1_Sheet2.Cells.Get(7, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(7, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(7, 0).Value = 2;
            this.fpSpread1_Sheet2.Cells.Get(7, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(7, 1).Border = complexBorder37;
            this.fpSpread1_Sheet2.Cells.Get(7, 1).CellType = generalCellType52;
            this.fpSpread1_Sheet2.Cells.Get(7, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(7, 1).Value = "固定资产原值";
            this.fpSpread1_Sheet2.Cells.Get(7, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(8, 0).Border = complexBorder38;
            this.fpSpread1_Sheet2.Cells.Get(8, 0).CellType = generalCellType53;
            this.fpSpread1_Sheet2.Cells.Get(8, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(8, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(8, 0).Value = 3;
            this.fpSpread1_Sheet2.Cells.Get(8, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(8, 1).Border = complexBorder39;
            this.fpSpread1_Sheet2.Cells.Get(8, 1).CellType = generalCellType54;
            this.fpSpread1_Sheet2.Cells.Get(8, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(8, 1).Value = "流动资金";
            this.fpSpread1_Sheet2.Cells.Get(8, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(9, 0).Border = complexBorder40;
            this.fpSpread1_Sheet2.Cells.Get(9, 0).CellType = generalCellType55;
            this.fpSpread1_Sheet2.Cells.Get(9, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(9, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(9, 0).Value = 4;
            this.fpSpread1_Sheet2.Cells.Get(9, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(9, 1).Border = complexBorder41;
            this.fpSpread1_Sheet2.Cells.Get(9, 1).CellType = generalCellType56;
            this.fpSpread1_Sheet2.Cells.Get(9, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(9, 1).Value = "建设资金筹措";
            this.fpSpread1_Sheet2.Cells.Get(9, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(10, 0).Border = complexBorder42;
            this.fpSpread1_Sheet2.Cells.Get(10, 0).CellType = generalCellType57;
            this.fpSpread1_Sheet2.Cells.Get(10, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(10, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(10, 0).Value = 4.1;
            this.fpSpread1_Sheet2.Cells.Get(10, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(10, 1).Border = complexBorder43;
            this.fpSpread1_Sheet2.Cells.Get(10, 1).CellType = generalCellType58;
            this.fpSpread1_Sheet2.Cells.Get(10, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(10, 1).Value = "资本金";
            this.fpSpread1_Sheet2.Cells.Get(10, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(11, 0).Border = complexBorder44;
            this.fpSpread1_Sheet2.Cells.Get(11, 0).CellType = generalCellType59;
            this.fpSpread1_Sheet2.Cells.Get(11, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(11, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(11, 0).Value = 4.2;
            this.fpSpread1_Sheet2.Cells.Get(11, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(11, 1).Border = complexBorder45;
            this.fpSpread1_Sheet2.Cells.Get(11, 1).CellType = generalCellType60;
            this.fpSpread1_Sheet2.Cells.Get(11, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(11, 1).Value = "融资";
            this.fpSpread1_Sheet2.Cells.Get(11, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(12, 0).Border = complexBorder46;
            this.fpSpread1_Sheet2.Cells.Get(12, 0).CellType = generalCellType61;
            this.fpSpread1_Sheet2.Cells.Get(12, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(12, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(12, 0).Value = 5;
            this.fpSpread1_Sheet2.Cells.Get(12, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(12, 1).Border = complexBorder47;
            this.fpSpread1_Sheet2.Cells.Get(12, 1).CellType = generalCellType62;
            this.fpSpread1_Sheet2.Cells.Get(12, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(12, 1).Value = "流动资金筹措";
            this.fpSpread1_Sheet2.Cells.Get(12, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(13, 0).Border = complexBorder48;
            this.fpSpread1_Sheet2.Cells.Get(13, 0).CellType = generalCellType63;
            this.fpSpread1_Sheet2.Cells.Get(13, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(13, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(13, 0).Value = 5.1;
            this.fpSpread1_Sheet2.Cells.Get(13, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(13, 1).Border = complexBorder49;
            this.fpSpread1_Sheet2.Cells.Get(13, 1).CellType = generalCellType64;
            this.fpSpread1_Sheet2.Cells.Get(13, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(13, 1).Value = "自有";
            this.fpSpread1_Sheet2.Cells.Get(13, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(14, 0).Border = complexBorder50;
            this.fpSpread1_Sheet2.Cells.Get(14, 0).CellType = generalCellType65;
            this.fpSpread1_Sheet2.Cells.Get(14, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(14, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet2.Cells.Get(14, 0).Value = 5.2;
            this.fpSpread1_Sheet2.Cells.Get(14, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.Cells.Get(14, 1).Border = complexBorder51;
            this.fpSpread1_Sheet2.Cells.Get(14, 1).CellType = generalCellType66;
            this.fpSpread1_Sheet2.Cells.Get(14, 1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet2.Cells.Get(14, 1).Value = "借款";
            this.fpSpread1_Sheet2.Cells.Get(14, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet2.ColumnHeader.AutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
            this.fpSpread1_Sheet2.Columns.Default.Width = 64F;
            this.fpSpread1_Sheet2.Columns.Get(0).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(0).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(1).Width = 143F;
            this.fpSpread1_Sheet2.Columns.Get(2).Width = 59F;
            this.fpSpread1_Sheet2.Columns.Get(3).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(3).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(4).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(4).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(5).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(5).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(6).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(6).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(7).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(7).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(8).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(8).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(9).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(9).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(10).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(10).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(11).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(11).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(12).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(12).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(13).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(13).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(14).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(14).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(15).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(15).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(16).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(16).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(17).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(17).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(18).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(18).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(19).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(19).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(20).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(20).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(21).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(21).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(22).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(22).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(23).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(23).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(24).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(24).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(25).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(25).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(26).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(26).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(27).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(27).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(28).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(28).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(29).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(29).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(30).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(30).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(31).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(31).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(32).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(32).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(33).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(33).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(34).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(34).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(35).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(35).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(36).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(36).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(37).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(37).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(38).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(38).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(39).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(39).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(40).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(40).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(41).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(41).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(42).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(42).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(43).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(43).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(44).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(44).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(45).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(45).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(46).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(46).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(47).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(47).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(48).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(48).Width = 61F;
            this.fpSpread1_Sheet2.Columns.Get(49).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet2.Columns.Get(49).Width = 61F;
            this.fpSpread1_Sheet2.DefaultStyleName = "Excel-0-15";
            this.fpSpread1_Sheet2.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_Sheet3
            // 
            this.fpSpread1_Sheet3.Reset();
            this.fpSpread1_Sheet3.SheetName = "还本付息表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet3.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet3.ColumnCount = 255;
            this.fpSpread1_Sheet3.RowCount = 65535;
            this.fpSpread1_Sheet3.AutoUpdateNotes = true;
            this.fpSpread1_Sheet3.Cells.Get(0, 0).CellType = generalCellType67;
            this.fpSpread1_Sheet3.Cells.Get(0, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet3.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet3.Cells.Get(0, 0).Value = "附表3   借款还本付息计算表";
            this.fpSpread1_Sheet3.Cells.Get(0, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet3.Cells.Get(2, 0).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet3.Cells.Get(3, 0).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet3.Cells.Get(3, 0).Value = "融资";
            this.fpSpread1_Sheet3.Cells.Get(4, 0).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet3.Cells.Get(4, 0).Value = "还贷要求";
            this.fpSpread1_Sheet3.ColumnHeader.AutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
            this.fpSpread1_Sheet3.Columns.Default.Width = 64F;
            this.fpSpread1_Sheet3.Columns.Get(0).Width = 112F;
            this.fpSpread1_Sheet3.DefaultStyleName = "Excel-0-15";
            this.fpSpread1_Sheet3.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet3.SelectionPolicy = FarPoint.Win.Spread.Model.SelectionPolicy.MultiRange;
            // 
            // fpSpread1_Sheet4
            // 
            this.fpSpread1_Sheet4.Reset();
            this.fpSpread1_Sheet4.SheetName = "成本费用表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet4.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet4.ColumnCount = 100;
            this.fpSpread1_Sheet4.RowCount = 9;
            this.fpSpread1_Sheet4.AutoUpdateNotes = true;
            this.fpSpread1_Sheet4.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet4.Cells.Get(0, 0).Value = "附表4 总成本费用估算表";
            this.fpSpread1_Sheet4.Cells.Get(1, 1).Value = "  ";
            this.fpSpread1_Sheet4.Cells.Get(2, 0).StyleName = "Excel-0-25";
            this.fpSpread1_Sheet4.Cells.Get(2, 0).Value = "序  号";
            this.fpSpread1_Sheet4.Cells.Get(2, 1).StyleName = "Excel-0-33";
            this.fpSpread1_Sheet4.Cells.Get(2, 1).Value = "项      目";
            this.fpSpread1_Sheet4.Cells.Get(3, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet4.Cells.Get(3, 0).Value = 1;
            this.fpSpread1_Sheet4.Cells.Get(3, 1).StyleName = "Excel-0-34";
            this.fpSpread1_Sheet4.Cells.Get(3, 1).Value = "售电量";
            numberCellType2.DecimalPlaces = 0;
            numberCellType2.MaximumValue = 10000000;
            numberCellType2.MinimumValue = -10000000;
            this.fpSpread1_Sheet4.Cells.Get(3, 2).CellType = numberCellType2;
            numberCellType3.DecimalPlaces = 0;
            numberCellType3.MaximumValue = 10000000;
            numberCellType3.MinimumValue = -10000000;
            this.fpSpread1_Sheet4.Cells.Get(3, 3).CellType = numberCellType3;
            numberCellType4.DecimalPlaces = 0;
            numberCellType4.MaximumValue = 10000000;
            numberCellType4.MinimumValue = -10000000;
            this.fpSpread1_Sheet4.Cells.Get(3, 4).CellType = numberCellType4;
            numberCellType5.DecimalPlaces = 0;
            numberCellType5.MaximumValue = 10000000;
            numberCellType5.MinimumValue = -10000000;
            this.fpSpread1_Sheet4.Cells.Get(3, 5).CellType = numberCellType5;
            numberCellType6.DecimalPlaces = 0;
            numberCellType6.MaximumValue = 10000000;
            numberCellType6.MinimumValue = -10000000;
            this.fpSpread1_Sheet4.Cells.Get(3, 6).CellType = numberCellType6;
            numberCellType7.DecimalPlaces = 0;
            numberCellType7.MaximumValue = 10000000;
            numberCellType7.MinimumValue = -10000000;
            this.fpSpread1_Sheet4.Cells.Get(3, 7).CellType = numberCellType7;
            numberCellType8.DecimalPlaces = 0;
            numberCellType8.MaximumValue = 10000000;
            numberCellType8.MinimumValue = -10000000;
            this.fpSpread1_Sheet4.Cells.Get(3, 8).CellType = numberCellType8;
            numberCellType9.DecimalPlaces = 0;
            numberCellType9.MaximumValue = 10000000;
            numberCellType9.MinimumValue = -10000000;
            this.fpSpread1_Sheet4.Cells.Get(3, 9).CellType = numberCellType9;
            numberCellType10.DecimalPlaces = 0;
            numberCellType10.MaximumValue = 10000000;
            numberCellType10.MinimumValue = -10000000;
            this.fpSpread1_Sheet4.Cells.Get(3, 10).CellType = numberCellType10;
            numberCellType11.DecimalPlaces = 0;
            numberCellType11.MaximumValue = 10000000;
            numberCellType11.MinimumValue = -10000000;
            this.fpSpread1_Sheet4.Cells.Get(3, 11).CellType = numberCellType11;
            this.fpSpread1_Sheet4.Cells.Get(4, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet4.Cells.Get(4, 0).Value = 2;
            this.fpSpread1_Sheet4.Cells.Get(4, 1).StyleName = "Excel-0-34";
            this.fpSpread1_Sheet4.Cells.Get(4, 1).Value = "经营成本";
            this.fpSpread1_Sheet4.Cells.Get(5, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet4.Cells.Get(5, 0).Value = 3;
            this.fpSpread1_Sheet4.Cells.Get(5, 1).StyleName = "Excel-0-34";
            this.fpSpread1_Sheet4.Cells.Get(5, 1).Value = "折旧费";
            this.fpSpread1_Sheet4.Cells.Get(6, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet4.Cells.Get(6, 0).Value = 4;
            this.fpSpread1_Sheet4.Cells.Get(6, 1).StyleName = "Excel-0-34";
            this.fpSpread1_Sheet4.Cells.Get(6, 1).Value = "财务费用";
            this.fpSpread1_Sheet4.Cells.Get(7, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet4.Cells.Get(7, 0).Value = 5;
            this.fpSpread1_Sheet4.Cells.Get(7, 1).StyleName = "Excel-0-34";
            this.fpSpread1_Sheet4.Cells.Get(7, 1).Value = "生产成本(2+3)";
            this.fpSpread1_Sheet4.Cells.Get(8, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet4.Cells.Get(8, 0).Value = 6;
            this.fpSpread1_Sheet4.Cells.Get(8, 1).StyleName = "Excel-0-34";
            this.fpSpread1_Sheet4.Cells.Get(8, 1).Value = "输变电总成本(4+5)";
            this.fpSpread1_Sheet4.ColumnHeader.AutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
            this.fpSpread1_Sheet4.Columns.Default.Width = 64F;
            this.fpSpread1_Sheet4.Columns.Get(0).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(0).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(1).Width = 113F;
            this.fpSpread1_Sheet4.Columns.Get(2).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(2).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(3).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(3).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(4).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(4).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(5).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(5).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(6).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(6).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(7).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(7).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(8).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(8).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(9).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(9).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(10).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(10).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(11).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(11).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(12).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(12).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(13).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(13).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(14).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(14).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(15).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(15).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(16).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(16).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(17).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(17).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(18).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(18).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(19).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(19).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(20).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(20).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(21).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(21).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(22).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(22).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(23).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(23).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(24).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(24).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(25).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(25).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(26).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(26).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(27).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(27).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(28).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(28).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(29).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(29).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(30).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(30).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(31).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(31).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(32).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(32).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(33).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(33).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(34).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(34).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(35).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(35).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(36).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(36).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(37).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(37).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(38).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(38).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(39).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(39).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(40).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(40).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(41).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(41).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(42).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(42).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(43).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(43).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(44).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(44).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(45).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(45).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(46).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(46).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(47).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(47).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(48).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(48).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(49).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(49).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(50).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(50).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(51).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(51).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(52).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(52).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(53).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(53).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(54).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(54).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(55).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(55).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(56).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(56).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(57).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(57).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(58).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(58).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(59).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(59).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(60).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(60).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(61).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(61).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(62).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(62).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(63).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(63).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(64).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(64).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(65).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(65).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(66).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(66).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(67).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(67).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(68).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(68).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(69).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(69).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(70).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(70).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(71).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(71).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(72).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(72).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(73).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(73).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(74).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(74).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(75).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(75).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(76).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(76).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(77).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(77).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(78).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(78).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(79).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(79).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(80).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(80).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(81).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(81).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(82).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(82).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(83).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(83).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(84).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(84).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(85).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(85).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(86).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(86).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(87).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(87).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(88).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(88).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(89).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(89).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(90).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(90).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(91).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(91).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(92).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(92).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(93).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(93).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(94).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(94).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(95).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(95).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(96).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(96).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(97).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(97).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(98).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(98).Width = 61F;
            this.fpSpread1_Sheet4.Columns.Get(99).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet4.Columns.Get(99).Width = 61F;
            this.fpSpread1_Sheet4.DefaultStyleName = "Excel-0-15";
            this.fpSpread1_Sheet4.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_Sheet5
            // 
            this.fpSpread1_Sheet5.Reset();
            this.fpSpread1_Sheet5.SheetName = "全投资";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet5.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet5.ColumnCount = 100;
            this.fpSpread1_Sheet5.RowCount = 20;
            this.fpSpread1_Sheet5.ActiveColumnIndex = 4;
            this.fpSpread1_Sheet5.ActiveRowIndex = 19;
            this.fpSpread1_Sheet5.AutoUpdateNotes = true;
            this.fpSpread1_Sheet5.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet5.Cells.Get(0, 0).Value = "附表5 现金流量表";
            this.fpSpread1_Sheet5.Cells.Get(2, 0).StyleName = "Excel-0-35";
            this.fpSpread1_Sheet5.Cells.Get(2, 0).Value = "序   号";
            this.fpSpread1_Sheet5.Cells.Get(2, 1).StyleName = "Excel-0-36";
            this.fpSpread1_Sheet5.Cells.Get(2, 1).Value = "     项     目";
            this.fpSpread1_Sheet5.Cells.Get(3, 0).StyleName = "Excel-0-37";
            this.fpSpread1_Sheet5.Cells.Get(3, 1).StyleName = "Excel-0-38";
            this.fpSpread1_Sheet5.Cells.Get(4, 0).StyleName = "Excel-0-25";
            this.fpSpread1_Sheet5.Cells.Get(4, 0).Value = 1;
            this.fpSpread1_Sheet5.Cells.Get(4, 1).StyleName = "Excel-0-39";
            this.fpSpread1_Sheet5.Cells.Get(4, 1).Value = "现金流入";
            this.fpSpread1_Sheet5.Cells.Get(5, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(5, 0).Value = 1.1;
            this.fpSpread1_Sheet5.Cells.Get(5, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(5, 1).Value = "销售加价收入";
            this.fpSpread1_Sheet5.Cells.Get(6, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(6, 0).Value = 1.2;
            this.fpSpread1_Sheet5.Cells.Get(6, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(6, 1).Value = "回收流动资金";
            this.fpSpread1_Sheet5.Cells.Get(7, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(7, 0).Value = 1.3;
            this.fpSpread1_Sheet5.Cells.Get(7, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(7, 1).Value = "回收固定资产余值";
            this.fpSpread1_Sheet5.Cells.Get(8, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(8, 0).Value = 2;
            this.fpSpread1_Sheet5.Cells.Get(8, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(8, 1).Value = "现金流出";
            this.fpSpread1_Sheet5.Cells.Get(9, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(9, 0).Value = 2.1;
            this.fpSpread1_Sheet5.Cells.Get(9, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(9, 1).Value = "建设投资";
            this.fpSpread1_Sheet5.Cells.Get(10, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(10, 0).Value = 2.2;
            this.fpSpread1_Sheet5.Cells.Get(10, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(10, 1).Value = "流动资金";
            this.fpSpread1_Sheet5.Cells.Get(11, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(11, 0).Value = 2.3;
            this.fpSpread1_Sheet5.Cells.Get(11, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(11, 1).Value = "经营成本";
            this.fpSpread1_Sheet5.Cells.Get(12, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(12, 0).Value = 2.4;
            this.fpSpread1_Sheet5.Cells.Get(12, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(12, 1).Value = "销售税金";
            this.fpSpread1_Sheet5.Cells.Get(13, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(13, 0).Value = 2.5;
            this.fpSpread1_Sheet5.Cells.Get(13, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(13, 1).Value = "所得税";
            this.fpSpread1_Sheet5.Cells.Get(14, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(14, 0).Value = 3;
            this.fpSpread1_Sheet5.Cells.Get(14, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(14, 1).Value = "净现金流量";
            this.fpSpread1_Sheet5.Cells.Get(15, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(15, 0).Value = 4;
            this.fpSpread1_Sheet5.Cells.Get(15, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(15, 1).Value = "累计净现金流量";
            this.fpSpread1_Sheet5.Cells.Get(16, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(16, 0).Value = 5;
            this.fpSpread1_Sheet5.Cells.Get(16, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(16, 1).Value = "净现金流量现值";
            this.fpSpread1_Sheet5.Cells.Get(17, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet5.Cells.Get(17, 0).Value = 6;
            this.fpSpread1_Sheet5.Cells.Get(17, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet5.Cells.Get(17, 1).Value = "净现金流量现值累计";
            this.fpSpread1_Sheet5.Cells.Get(19, 0).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet5.Cells.Get(19, 0).Value = "内部收益率";
            percentCellType9.FixedPoint = true;
            percentCellType9.PercentSign = "%";
            this.fpSpread1_Sheet5.Cells.Get(19, 1).CellType = percentCellType9;
            this.fpSpread1_Sheet5.Cells.Get(19, 2).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet5.Cells.Get(19, 3).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet5.Cells.Get(19, 3).Value = "净现值";
            numberCellType12.DecimalPlaces = 0;
            numberCellType12.MaximumValue = 10000000;
            numberCellType12.MinimumValue = -9999999;
            this.fpSpread1_Sheet5.Cells.Get(19, 4).CellType = numberCellType12;
            this.fpSpread1_Sheet5.Cells.Get(19, 5).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet5.Cells.Get(19, 5).Value = "万元";
            this.fpSpread1_Sheet5.Cells.Get(19, 6).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet5.Cells.Get(19, 7).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet5.Cells.Get(19, 7).Value = "回收期";
            this.fpSpread1_Sheet5.Cells.Get(19, 9).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet5.Cells.Get(19, 9).Value = "年";
            this.fpSpread1_Sheet5.ColumnHeader.AutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
            this.fpSpread1_Sheet5.Columns.Default.Width = 64F;
            this.fpSpread1_Sheet5.Columns.Get(0).Width = 71F;
            this.fpSpread1_Sheet5.Columns.Get(1).Width = 154F;
            this.fpSpread1_Sheet5.Columns.Get(2).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(2).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(3).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(3).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(4).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(4).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(5).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(5).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(6).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(6).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(7).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(7).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(8).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(8).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(9).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(9).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(10).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(10).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(11).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(11).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(12).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(12).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(13).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(13).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(14).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(14).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(15).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(15).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(16).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(16).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(17).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(17).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(18).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(18).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(19).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(19).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(20).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(20).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(21).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(21).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(22).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(22).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(23).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(23).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(24).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(24).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(25).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(25).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(26).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(26).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(27).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(27).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(28).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(28).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(29).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(29).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(30).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(30).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(31).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(31).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(32).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(32).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(33).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(33).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(34).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(34).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(35).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(35).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(36).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(36).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(37).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(37).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(38).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(38).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(39).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(39).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(40).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(40).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(41).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(41).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(42).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(42).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(43).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(43).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(44).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(44).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(45).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(45).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(46).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(46).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(47).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(47).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(48).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(48).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(49).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(49).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(50).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(50).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(51).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(51).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(52).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(52).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(53).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(53).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(54).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(54).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(55).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(55).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(56).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(56).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(57).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(57).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(58).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(58).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(59).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(59).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(60).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(60).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(61).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(61).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(62).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(62).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(63).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(63).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(64).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(64).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(65).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(65).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(66).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(66).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(67).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(67).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(68).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(68).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(69).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(69).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(70).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(70).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(71).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(71).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(72).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(72).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(73).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(73).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(74).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(74).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(75).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(75).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(76).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(76).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(77).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(77).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(78).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(78).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(79).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(79).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(80).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(80).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(81).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(81).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(82).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(82).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(83).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(83).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(84).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(84).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(85).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(85).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(86).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(86).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(87).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(87).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(88).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(88).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(89).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(89).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(90).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(90).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(91).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(91).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(92).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(92).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(93).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(93).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(94).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(94).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(95).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(95).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(96).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(96).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(97).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(97).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(98).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(98).Width = 61F;
            this.fpSpread1_Sheet5.Columns.Get(99).StyleName = "Excel-0-21";
            this.fpSpread1_Sheet5.Columns.Get(99).Width = 61F;
            this.fpSpread1_Sheet5.DefaultStyleName = "Excel-0-15";
            this.fpSpread1_Sheet5.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_Sheet6
            // 
            this.fpSpread1_Sheet6.Reset();
            this.fpSpread1_Sheet6.SheetName = "资本金";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet6.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet6.ColumnCount = 255;
            this.fpSpread1_Sheet6.RowCount = 20;
            this.fpSpread1_Sheet6.ActiveColumnIndex = 4;
            this.fpSpread1_Sheet6.ActiveRowIndex = 19;
            this.fpSpread1_Sheet6.AutoUpdateNotes = true;
            this.fpSpread1_Sheet6.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet6.Cells.Get(0, 0).Value = "附表6   资  本  金  现  金  流  量  表";
            this.fpSpread1_Sheet6.Cells.Get(2, 0).StyleName = "Excel-0-25";
            this.fpSpread1_Sheet6.Cells.Get(2, 0).Value = "序   号";
            this.fpSpread1_Sheet6.Cells.Get(2, 1).StyleName = "Excel-0-39";
            this.fpSpread1_Sheet6.Cells.Get(2, 1).Value = "     项     目";
            this.fpSpread1_Sheet6.Cells.Get(3, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(3, 1).StyleName = "Excel-0-40";
            this.fpSpread1_Sheet6.Cells.Get(4, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(4, 0).Value = 1;
            this.fpSpread1_Sheet6.Cells.Get(4, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(4, 1).Value = "现金流入";
            this.fpSpread1_Sheet6.Cells.Get(5, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(5, 0).Value = 1.1;
            this.fpSpread1_Sheet6.Cells.Get(5, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(5, 1).Value = "资本金分利";
            this.fpSpread1_Sheet6.Cells.Get(6, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(6, 0).Value = 1.2;
            this.fpSpread1_Sheet6.Cells.Get(6, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(6, 1).Value = "回收流动资金";
            this.fpSpread1_Sheet6.Cells.Get(7, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(7, 0).Value = 1.3;
            this.fpSpread1_Sheet6.Cells.Get(7, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(7, 1).Value = "回收固定资产余值";
            this.fpSpread1_Sheet6.Cells.Get(8, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(8, 0).Value = 1.4;
            this.fpSpread1_Sheet6.Cells.Get(8, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(8, 1).Value = "回收折旧费";
            this.fpSpread1_Sheet6.Cells.Get(9, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(9, 0).Value = 1.5;
            this.fpSpread1_Sheet6.Cells.Get(9, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(9, 1).Value = "回收余留公积金";
            this.fpSpread1_Sheet6.Cells.Get(10, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(10, 0).Value = 2;
            this.fpSpread1_Sheet6.Cells.Get(10, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(10, 1).Value = "现金流出";
            this.fpSpread1_Sheet6.Cells.Get(11, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(11, 0).Value = 2.1;
            this.fpSpread1_Sheet6.Cells.Get(11, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(11, 1).Value = "建设投资";
            this.fpSpread1_Sheet6.Cells.Get(12, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(12, 0).Value = 2.2;
            this.fpSpread1_Sheet6.Cells.Get(12, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(12, 1).Value = "流动资金";
            this.fpSpread1_Sheet6.Cells.Get(13, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(13, 0).Value = 2.3;
            this.fpSpread1_Sheet6.Cells.Get(13, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(13, 1).Value = "其它";
            this.fpSpread1_Sheet6.Cells.Get(14, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(14, 0).Value = 3;
            this.fpSpread1_Sheet6.Cells.Get(14, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(14, 1).Value = "净现金流量";
            this.fpSpread1_Sheet6.Cells.Get(15, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(15, 0).Value = 4;
            this.fpSpread1_Sheet6.Cells.Get(15, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(15, 1).Value = "累计净现金流量";
            this.fpSpread1_Sheet6.Cells.Get(16, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(16, 0).Value = 5;
            this.fpSpread1_Sheet6.Cells.Get(16, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(16, 1).Value = "净现金流量现值";
            this.fpSpread1_Sheet6.Cells.Get(17, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet6.Cells.Get(17, 0).Value = 6;
            this.fpSpread1_Sheet6.Cells.Get(17, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet6.Cells.Get(17, 1).Value = "净现金流量现值累计";
            this.fpSpread1_Sheet6.Cells.Get(19, 0).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet6.Cells.Get(19, 0).Value = "内部收益率";
            percentCellType10.FixedPoint = true;
            percentCellType10.PercentSign = "%";
            this.fpSpread1_Sheet6.Cells.Get(19, 1).CellType = percentCellType10;
            this.fpSpread1_Sheet6.Cells.Get(19, 2).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet6.Cells.Get(19, 3).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet6.Cells.Get(19, 3).Value = "净现值";
            numberCellType13.DecimalPlaces = 0;
            numberCellType13.MaximumValue = 100000000;
            numberCellType13.MinimumValue = -100000000;
            this.fpSpread1_Sheet6.Cells.Get(19, 4).CellType = numberCellType13;
            this.fpSpread1_Sheet6.Cells.Get(19, 4).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet6.Cells.Get(19, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet6.Cells.Get(19, 5).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet6.Cells.Get(19, 5).Value = "万元";
            this.fpSpread1_Sheet6.Cells.Get(19, 6).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet6.Cells.Get(19, 7).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet6.Cells.Get(19, 7).Value = "回收期";
            this.fpSpread1_Sheet6.Cells.Get(19, 8).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet6.Cells.Get(19, 9).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet6.Cells.Get(19, 9).Value = "年";
            this.fpSpread1_Sheet6.ColumnHeader.AutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
            this.fpSpread1_Sheet6.Columns.Default.Width = 64F;
            this.fpSpread1_Sheet6.Columns.Get(0).Width = 76F;
            this.fpSpread1_Sheet6.Columns.Get(1).Width = 160F;
            this.fpSpread1_Sheet6.DefaultStyleName = "Excel-0-15";
            this.fpSpread1_Sheet6.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_Sheet7
            // 
            this.fpSpread1_Sheet7.Reset();
            this.fpSpread1_Sheet7.SheetName = "损益表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet7.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet7.ColumnCount = 255;
            this.fpSpread1_Sheet7.RowCount = 13;
            this.fpSpread1_Sheet7.ActiveColumnIndex = 1;
            this.fpSpread1_Sheet7.AutoUpdateNotes = true;
            this.fpSpread1_Sheet7.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet7.Cells.Get(0, 0).Value = "附表7 损益表";
            this.fpSpread1_Sheet7.Cells.Get(2, 0).StyleName = "Excel-0-25";
            this.fpSpread1_Sheet7.Cells.Get(2, 0).Value = "序 号";
            this.fpSpread1_Sheet7.Cells.Get(2, 1).StyleName = "Excel-0-41";
            this.fpSpread1_Sheet7.Cells.Get(2, 1).Value = "项      目";
            this.fpSpread1_Sheet7.Cells.Get(3, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet7.Cells.Get(3, 0).Value = 1;
            this.fpSpread1_Sheet7.Cells.Get(3, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet7.Cells.Get(3, 1).Value = "销售收入";
            this.fpSpread1_Sheet7.Cells.Get(4, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet7.Cells.Get(4, 0).Value = 1.1;
            this.fpSpread1_Sheet7.Cells.Get(4, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet7.Cells.Get(4, 1).Value = "电量加价(不含税)";
            this.fpSpread1_Sheet7.Cells.Get(5, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet7.Cells.Get(5, 0).Value = 1.2;
            this.fpSpread1_Sheet7.Cells.Get(5, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet7.Cells.Get(5, 1).Value = "售电量";
            this.fpSpread1_Sheet7.Cells.Get(6, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet7.Cells.Get(6, 0).Value = 2;
            this.fpSpread1_Sheet7.Cells.Get(6, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet7.Cells.Get(6, 1).Value = "销售税金及附加";
            this.fpSpread1_Sheet7.Cells.Get(7, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet7.Cells.Get(7, 0).Value = 3;
            this.fpSpread1_Sheet7.Cells.Get(7, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet7.Cells.Get(7, 1).Value = "总成本费用";
            this.fpSpread1_Sheet7.Cells.Get(8, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet7.Cells.Get(8, 0).Value = 4;
            this.fpSpread1_Sheet7.Cells.Get(8, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet7.Cells.Get(8, 1).Value = "销售利润";
            this.fpSpread1_Sheet7.Cells.Get(9, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet7.Cells.Get(9, 0).Value = 5;
            this.fpSpread1_Sheet7.Cells.Get(9, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet7.Cells.Get(9, 1).Value = "所得税";
            this.fpSpread1_Sheet7.Cells.Get(10, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet7.Cells.Get(10, 0).Value = 6;
            this.fpSpread1_Sheet7.Cells.Get(10, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet7.Cells.Get(10, 1).Value = "公积金、公益金";
            this.fpSpread1_Sheet7.Cells.Get(11, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet7.Cells.Get(11, 0).Value = 7;
            this.fpSpread1_Sheet7.Cells.Get(11, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet7.Cells.Get(11, 1).Value = "偿还建设投资借款";
            this.fpSpread1_Sheet7.Cells.Get(12, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet7.Cells.Get(12, 0).Value = 8;
            this.fpSpread1_Sheet7.Cells.Get(12, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet7.Cells.Get(12, 1).Value = "资本金分利";
            this.fpSpread1_Sheet7.ColumnHeader.AutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
            this.fpSpread1_Sheet7.Columns.Default.Width = 64F;
            this.fpSpread1_Sheet7.Columns.Get(1).Width = 142F;
            this.fpSpread1_Sheet7.Columns.Get(4).Width = 63F;
            this.fpSpread1_Sheet7.DefaultStyleName = "Excel-0-15";
            this.fpSpread1_Sheet7.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_Sheet8
            // 
            this.fpSpread1_Sheet8.Reset();
            this.fpSpread1_Sheet8.SheetName = "一览表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet8.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet8.ColumnCount = 4;
            this.fpSpread1_Sheet8.RowCount = 21;
            this.fpSpread1_Sheet8.ActiveColumnIndex = 1;
            this.fpSpread1_Sheet8.ActiveRowIndex = 17;
            this.fpSpread1_Sheet8.AutoUpdateNotes = true;
            this.fpSpread1_Sheet8.Cells.Get(0, 0).ColumnSpan = 4;
            this.fpSpread1_Sheet8.Cells.Get(0, 0).StyleName = "Excel-0-22";
            this.fpSpread1_Sheet8.Cells.Get(0, 0).Value = "附表8   工  程  经  济  效  益  指  标  一  览  表";
            this.fpSpread1_Sheet8.Cells.Get(0, 1).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet8.Cells.Get(0, 2).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet8.Cells.Get(1, 0).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet8.Cells.Get(1, 1).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet8.Cells.Get(1, 2).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet8.Cells.Get(2, 0).StyleName = "Excel-0-25";
            this.fpSpread1_Sheet8.Cells.Get(2, 0).Value = "  序    号";
            this.fpSpread1_Sheet8.Cells.Get(2, 1).StyleName = "Excel-0-39";
            this.fpSpread1_Sheet8.Cells.Get(2, 1).Value = "项       目";
            this.fpSpread1_Sheet8.Cells.Get(2, 2).StyleName = "Excel-0-39";
            this.fpSpread1_Sheet8.Cells.Get(2, 2).Value = "单   位";
            this.fpSpread1_Sheet8.Cells.Get(2, 3).StyleName = "Excel-0-39";
            this.fpSpread1_Sheet8.Cells.Get(2, 3).Value = "指   标";
            this.fpSpread1_Sheet8.Cells.Get(3, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(3, 0).Value = 1;
            this.fpSpread1_Sheet8.Cells.Get(3, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(3, 1).Value = "输变电静态投资";
            this.fpSpread1_Sheet8.Cells.Get(3, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(3, 2).Value = "万元";
            this.fpSpread1_Sheet8.Cells.Get(3, 3).Border = complexBorder52;
            numberCellType14.DecimalPlaces = 0;
            numberCellType14.MaximumValue = 10000000;
            numberCellType14.MinimumValue = -10000000;
            this.fpSpread1_Sheet8.Cells.Get(3, 3).CellType = numberCellType14;
            this.fpSpread1_Sheet8.Cells.Get(3, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(3, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(4, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(4, 0).Value = 2;
            this.fpSpread1_Sheet8.Cells.Get(4, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(4, 1).Value = "建设期利息";
            this.fpSpread1_Sheet8.Cells.Get(4, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(4, 2).Value = "万元";
            this.fpSpread1_Sheet8.Cells.Get(4, 3).Border = complexBorder53;
            numberCellType15.DecimalPlaces = 0;
            numberCellType15.MaximumValue = 10000000;
            numberCellType15.MinimumValue = -10000000;
            this.fpSpread1_Sheet8.Cells.Get(4, 3).CellType = numberCellType15;
            this.fpSpread1_Sheet8.Cells.Get(4, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(4, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(5, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(5, 0).Value = 3;
            this.fpSpread1_Sheet8.Cells.Get(5, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(5, 1).Value = "输变电动态投资";
            this.fpSpread1_Sheet8.Cells.Get(5, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(5, 2).Value = "万元";
            this.fpSpread1_Sheet8.Cells.Get(5, 3).Border = complexBorder54;
            numberCellType16.DecimalPlaces = 0;
            numberCellType16.MaximumValue = 10000000;
            numberCellType16.MinimumValue = -10000000;
            this.fpSpread1_Sheet8.Cells.Get(5, 3).CellType = numberCellType16;
            this.fpSpread1_Sheet8.Cells.Get(5, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(5, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(6, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(6, 0).Value = 4;
            this.fpSpread1_Sheet8.Cells.Get(6, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(6, 1).Value = "内部收益率(全部投资)";
            this.fpSpread1_Sheet8.Cells.Get(6, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(6, 2).Value = "%";
            this.fpSpread1_Sheet8.Cells.Get(6, 3).Border = complexBorder55;
            percentCellType11.FixedPoint = true;
            percentCellType11.PercentSign = "%";
            this.fpSpread1_Sheet8.Cells.Get(6, 3).CellType = percentCellType11;
            this.fpSpread1_Sheet8.Cells.Get(6, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(6, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(7, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(7, 0).Value = 5;
            this.fpSpread1_Sheet8.Cells.Get(7, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(7, 1).Value = "净现值";
            this.fpSpread1_Sheet8.Cells.Get(7, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(7, 2).Value = "万元";
            this.fpSpread1_Sheet8.Cells.Get(7, 3).Border = complexBorder56;
            numberCellType17.DecimalPlaces = 0;
            numberCellType17.MaximumValue = 10000000;
            numberCellType17.MinimumValue = -10000000;
            this.fpSpread1_Sheet8.Cells.Get(7, 3).CellType = numberCellType17;
            this.fpSpread1_Sheet8.Cells.Get(7, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(7, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(8, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(8, 0).Value = 6;
            this.fpSpread1_Sheet8.Cells.Get(8, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(8, 1).Value = "投资回收期";
            this.fpSpread1_Sheet8.Cells.Get(8, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(8, 2).Value = "年";
            this.fpSpread1_Sheet8.Cells.Get(8, 3).Border = complexBorder57;
            numberCellType18.DecimalPlaces = 1;
            numberCellType18.FixedPoint = false;
            numberCellType18.MaximumValue = 10000000;
            numberCellType18.MinimumValue = -10000000;
            this.fpSpread1_Sheet8.Cells.Get(8, 3).CellType = numberCellType18;
            this.fpSpread1_Sheet8.Cells.Get(8, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(8, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(9, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(9, 0).Value = 7;
            this.fpSpread1_Sheet8.Cells.Get(9, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(9, 1).Value = "内部收益率(资本金)";
            this.fpSpread1_Sheet8.Cells.Get(9, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(9, 2).Value = "%";
            this.fpSpread1_Sheet8.Cells.Get(9, 3).Border = complexBorder58;
            percentCellType12.FixedPoint = true;
            percentCellType12.PercentSign = "%";
            this.fpSpread1_Sheet8.Cells.Get(9, 3).CellType = percentCellType12;
            this.fpSpread1_Sheet8.Cells.Get(9, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(9, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(10, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(10, 0).Value = 8;
            this.fpSpread1_Sheet8.Cells.Get(10, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(10, 1).Value = "净现值";
            this.fpSpread1_Sheet8.Cells.Get(10, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(10, 2).Value = "万元";
            this.fpSpread1_Sheet8.Cells.Get(10, 3).Border = complexBorder59;
            numberCellType19.DecimalPlaces = 0;
            numberCellType19.MaximumValue = 10000000;
            numberCellType19.MinimumValue = -10000000;
            this.fpSpread1_Sheet8.Cells.Get(10, 3).CellType = numberCellType19;
            this.fpSpread1_Sheet8.Cells.Get(10, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(10, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(11, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(11, 0).Value = 9;
            this.fpSpread1_Sheet8.Cells.Get(11, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(11, 1).Value = "投资利润率";
            this.fpSpread1_Sheet8.Cells.Get(11, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(11, 2).Value = "%";
            this.fpSpread1_Sheet8.Cells.Get(11, 3).Border = complexBorder60;
            percentCellType13.FixedPoint = true;
            percentCellType13.PercentSign = "%";
            this.fpSpread1_Sheet8.Cells.Get(11, 3).CellType = percentCellType13;
            this.fpSpread1_Sheet8.Cells.Get(11, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(11, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(12, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(12, 0).Value = 10;
            this.fpSpread1_Sheet8.Cells.Get(12, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(12, 1).Value = "投资利税率";
            this.fpSpread1_Sheet8.Cells.Get(12, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(12, 2).Value = "%";
            this.fpSpread1_Sheet8.Cells.Get(12, 3).Border = complexBorder61;
            percentCellType14.FixedPoint = true;
            percentCellType14.PercentSign = "%";
            this.fpSpread1_Sheet8.Cells.Get(12, 3).CellType = percentCellType14;
            this.fpSpread1_Sheet8.Cells.Get(12, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(12, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(13, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(13, 0).Value = 11;
            this.fpSpread1_Sheet8.Cells.Get(13, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(13, 1).Value = "资本金净利润率";
            this.fpSpread1_Sheet8.Cells.Get(13, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(13, 2).Value = "%";
            this.fpSpread1_Sheet8.Cells.Get(13, 3).Border = complexBorder62;
            percentCellType15.FixedPoint = true;
            percentCellType15.PercentSign = "%";
            this.fpSpread1_Sheet8.Cells.Get(13, 3).CellType = percentCellType15;
            this.fpSpread1_Sheet8.Cells.Get(13, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(13, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(14, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(14, 0).Value = 12;
            this.fpSpread1_Sheet8.Cells.Get(14, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(14, 1).Value = "电网电量不含税加价(还贷期间)";
            this.fpSpread1_Sheet8.Cells.Get(14, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(14, 2).Value = "元/千瓦时";
            this.fpSpread1_Sheet8.Cells.Get(14, 3).Border = complexBorder63;
            numberCellType20.DecimalPlaces = 4;
            this.fpSpread1_Sheet8.Cells.Get(14, 3).CellType = numberCellType20;
            this.fpSpread1_Sheet8.Cells.Get(14, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(14, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(15, 0).StyleName = "Excel-0-31";
            this.fpSpread1_Sheet8.Cells.Get(15, 0).Value = 13;
            this.fpSpread1_Sheet8.Cells.Get(15, 1).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(15, 1).Value = "电网电量不含税加价(还贷后)";
            this.fpSpread1_Sheet8.Cells.Get(15, 2).StyleName = "Excel-0-32";
            this.fpSpread1_Sheet8.Cells.Get(15, 2).Value = "元/千瓦时";
            this.fpSpread1_Sheet8.Cells.Get(15, 3).Border = complexBorder64;
            numberCellType21.DecimalPlaces = 4;
            this.fpSpread1_Sheet8.Cells.Get(15, 3).CellType = numberCellType21;
            this.fpSpread1_Sheet8.Cells.Get(15, 3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(15, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(16, 0).Border = complexBorder65;
            this.fpSpread1_Sheet8.Cells.Get(16, 0).CellType = generalCellType68;
            this.fpSpread1_Sheet8.Cells.Get(16, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(16, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet8.Cells.Get(16, 0).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet8.Cells.Get(16, 0).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet8.Cells.Get(16, 0).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet8.Cells.Get(16, 0).ParseFormatString = "n";
            this.fpSpread1_Sheet8.Cells.Get(16, 0).Value = 14;
            this.fpSpread1_Sheet8.Cells.Get(16, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(16, 1).Border = complexBorder66;
            this.fpSpread1_Sheet8.Cells.Get(16, 1).Value = "单位电量输配电成本(不含网费,不含税)";
            this.fpSpread1_Sheet8.Cells.Get(16, 2).Border = complexBorder67;
            this.fpSpread1_Sheet8.Cells.Get(16, 2).Value = "元/兆瓦时";
            this.fpSpread1_Sheet8.Cells.Get(16, 3).Border = complexBorder68;
            this.fpSpread1_Sheet8.Cells.Get(17, 0).Border = complexBorder69;
            this.fpSpread1_Sheet8.Cells.Get(17, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet8.Cells.Get(17, 0).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet8.Cells.Get(17, 0).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet8.Cells.Get(17, 0).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet8.Cells.Get(17, 0).ParseFormatString = "n";
            this.fpSpread1_Sheet8.Cells.Get(17, 0).Value = 15;
            this.fpSpread1_Sheet8.Cells.Get(17, 1).Border = complexBorder70;
            this.fpSpread1_Sheet8.Cells.Get(17, 1).Value = "单位电量输配电成本(不含网费,含税)";
            this.fpSpread1_Sheet8.Cells.Get(17, 2).Border = complexBorder71;
            this.fpSpread1_Sheet8.Cells.Get(17, 2).CellType = generalCellType69;
            this.fpSpread1_Sheet8.Cells.Get(17, 2).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_Sheet8.Cells.Get(17, 2).Value = "元/兆瓦时";
            this.fpSpread1_Sheet8.Cells.Get(17, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1_Sheet8.Cells.Get(17, 3).Border = complexBorder72;
            this.fpSpread1_Sheet8.Cells.Get(18, 0).Border = complexBorder73;
            this.fpSpread1_Sheet8.Cells.Get(18, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet8.Cells.Get(18, 0).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet8.Cells.Get(18, 0).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet8.Cells.Get(18, 0).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet8.Cells.Get(18, 0).ParseFormatString = "n";
            this.fpSpread1_Sheet8.Cells.Get(18, 0).Value = 16;
            this.fpSpread1_Sheet8.Cells.Get(18, 1).Border = complexBorder74;
            this.fpSpread1_Sheet8.Cells.Get(18, 1).Value = "单位电量输配电成本(含网费,含税)";
            this.fpSpread1_Sheet8.Cells.Get(18, 2).Border = complexBorder75;
            this.fpSpread1_Sheet8.Cells.Get(18, 2).Value = "元/兆瓦时";
            this.fpSpread1_Sheet8.Cells.Get(18, 3).Border = complexBorder76;
            this.fpSpread1_Sheet8.Cells.Get(20, 0).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet8.Cells.Get(20, 0).Value = "备注:";
            this.fpSpread1_Sheet8.Cells.Get(20, 1).StyleName = "Excel-0-23";
            this.fpSpread1_Sheet8.Cells.Get(20, 1).Value = "含税价=不含税价×1.17";
            this.fpSpread1_Sheet8.ColumnHeader.AutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
            this.fpSpread1_Sheet8.Columns.Default.Width = 64F;
            this.fpSpread1_Sheet8.Columns.Get(0).Width = 106F;
            this.fpSpread1_Sheet8.Columns.Get(1).Width = 199F;
            this.fpSpread1_Sheet8.Columns.Get(2).Width = 79F;
            this.fpSpread1_Sheet8.DefaultStyleName = "Excel-0-15";
            this.fpSpread1_Sheet8.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet8.Rows.Get(0).Height = 21F;
            // 
            // fpSpread1_Sheet9
            // 
            this.fpSpread1_Sheet9.Reset();
            this.fpSpread1_Sheet9.SheetName = "参数";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet9.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet9.ColumnCount = 4;
            this.fpSpread1_Sheet9.RowCount = 27;
            this.fpSpread1_Sheet9.AutoUpdateNotes = true;
            this.fpSpread1_Sheet9.Cells.Get(0, 0).ColumnSpan = 4;
            this.fpSpread1_Sheet9.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(0, 0).Value = "参数设置";
            this.fpSpread1_Sheet9.Cells.Get(0, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(1, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(1, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(1, 1).Value = "      ";
            this.fpSpread1_Sheet9.Cells.Get(1, 2).Value = " ";
            this.fpSpread1_Sheet9.Cells.Get(2, 0).Border = complexBorder77;
            this.fpSpread1_Sheet9.Cells.Get(2, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(2, 0).Value = "还贷期";
            this.fpSpread1_Sheet9.Cells.Get(2, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(2, 1).Border = complexBorder78;
            numberCellType22.DecimalPlaces = 0;
            numberCellType22.FixedPoint = false;
            numberCellType22.MaximumValue = 9999999;
            numberCellType22.MinimumValue = -9999999;
            this.fpSpread1_Sheet9.Cells.Get(2, 1).CellType = numberCellType22;
            this.fpSpread1_Sheet9.Cells.Get(2, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(2, 1).Value = 0;
            this.fpSpread1_Sheet9.Cells.Get(2, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(2, 2).Border = complexBorder79;
            this.fpSpread1_Sheet9.Cells.Get(2, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(2, 2).Value = "教育费附加";
            this.fpSpread1_Sheet9.Cells.Get(2, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(2, 3).Border = complexBorder80;
            percentCellType16.FixedPoint = true;
            percentCellType16.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(2, 3).CellType = percentCellType16;
            this.fpSpread1_Sheet9.Cells.Get(2, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(2, 3).Value = 0.03;
            this.fpSpread1_Sheet9.Cells.Get(2, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(3, 0).Border = complexBorder81;
            this.fpSpread1_Sheet9.Cells.Get(3, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(3, 0).Value = "实际贷款年利率";
            this.fpSpread1_Sheet9.Cells.Get(3, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(3, 1).Border = complexBorder82;
            percentCellType17.FixedPoint = true;
            percentCellType17.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(3, 1).CellType = percentCellType17;
            this.fpSpread1_Sheet9.Cells.Get(3, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(3, 1).Value = 0.06;
            this.fpSpread1_Sheet9.Cells.Get(3, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(3, 2).Border = complexBorder83;
            this.fpSpread1_Sheet9.Cells.Get(3, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(3, 2).Value = "动态投资分额";
            this.fpSpread1_Sheet9.Cells.Get(3, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(3, 3).Border = complexBorder84;
            percentCellType18.FixedPoint = true;
            percentCellType18.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(3, 3).CellType = percentCellType18;
            this.fpSpread1_Sheet9.Cells.Get(3, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(3, 3).Value = 0.8;
            this.fpSpread1_Sheet9.Cells.Get(3, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(4, 0).Border = complexBorder85;
            this.fpSpread1_Sheet9.Cells.Get(4, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(4, 0).Value = "折旧率";
            this.fpSpread1_Sheet9.Cells.Get(4, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(4, 1).Border = complexBorder86;
            percentCellType19.FixedPoint = true;
            percentCellType19.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(4, 1).CellType = percentCellType19;
            this.fpSpread1_Sheet9.Cells.Get(4, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(4, 1).Value = 0.0475;
            this.fpSpread1_Sheet9.Cells.Get(4, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(4, 2).Border = complexBorder87;
            this.fpSpread1_Sheet9.Cells.Get(4, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(4, 2).Value = "流动资金比率";
            this.fpSpread1_Sheet9.Cells.Get(4, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(4, 3).Border = complexBorder88;
            percentCellType20.FixedPoint = true;
            percentCellType20.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(4, 3).CellType = percentCellType20;
            this.fpSpread1_Sheet9.Cells.Get(4, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(4, 3).Value = 0.01;
            this.fpSpread1_Sheet9.Cells.Get(4, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(5, 0).Border = complexBorder89;
            this.fpSpread1_Sheet9.Cells.Get(5, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(5, 0).Value = "固定资产残值";
            this.fpSpread1_Sheet9.Cells.Get(5, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(5, 1).Border = complexBorder90;
            percentCellType21.FixedPoint = true;
            percentCellType21.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(5, 1).CellType = percentCellType21;
            this.fpSpread1_Sheet9.Cells.Get(5, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(5, 1).Value = 0.05;
            this.fpSpread1_Sheet9.Cells.Get(5, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(5, 2).Border = complexBorder91;
            this.fpSpread1_Sheet9.Cells.Get(5, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(5, 2).Value = "资本金比率";
            this.fpSpread1_Sheet9.Cells.Get(5, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(5, 3).Border = complexBorder92;
            percentCellType22.FixedPoint = true;
            percentCellType22.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(5, 3).CellType = percentCellType22;
            this.fpSpread1_Sheet9.Cells.Get(5, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(5, 3).Value = 0.2;
            this.fpSpread1_Sheet9.Cells.Get(5, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(6, 0).Border = complexBorder93;
            this.fpSpread1_Sheet9.Cells.Get(6, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(6, 0).Value = "城建及教育附加税";
            this.fpSpread1_Sheet9.Cells.Get(6, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(6, 1).Border = complexBorder94;
            percentCellType23.FixedPoint = true;
            percentCellType23.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(6, 1).CellType = percentCellType23;
            this.fpSpread1_Sheet9.Cells.Get(6, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(6, 1).Value = 0.1;
            this.fpSpread1_Sheet9.Cells.Get(6, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(6, 2).Border = complexBorder95;
            this.fpSpread1_Sheet9.Cells.Get(6, 2).CellType = generalCellType70;
            this.fpSpread1_Sheet9.Cells.Get(6, 2).Font = new System.Drawing.Font("宋体", 9F);
            this.fpSpread1_Sheet9.Cells.Get(6, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(6, 2).Value = "自有资金比率";
            this.fpSpread1_Sheet9.Cells.Get(6, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(6, 3).Border = complexBorder96;
            percentCellType24.FixedPoint = true;
            percentCellType24.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(6, 3).CellType = percentCellType24;
            this.fpSpread1_Sheet9.Cells.Get(6, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(6, 3).Value = 0.3;
            this.fpSpread1_Sheet9.Cells.Get(6, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(7, 0).Border = complexBorder97;
            this.fpSpread1_Sheet9.Cells.Get(7, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(7, 0).Value = "公积金,公益金率";
            this.fpSpread1_Sheet9.Cells.Get(7, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(7, 1).Border = complexBorder98;
            percentCellType25.FixedPoint = true;
            percentCellType25.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(7, 1).CellType = percentCellType25;
            this.fpSpread1_Sheet9.Cells.Get(7, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(7, 1).Value = 0.15;
            this.fpSpread1_Sheet9.Cells.Get(7, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(7, 2).Border = complexBorder99;
            this.fpSpread1_Sheet9.Cells.Get(7, 2).CellType = generalCellType71;
            this.fpSpread1_Sheet9.Cells.Get(7, 2).Font = new System.Drawing.Font("宋体", 9F);
            this.fpSpread1_Sheet9.Cells.Get(7, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(7, 2).Value = "存贷利率比";
            this.fpSpread1_Sheet9.Cells.Get(7, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(7, 3).Border = complexBorder100;
            percentCellType26.FixedPoint = true;
            percentCellType26.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(7, 3).CellType = percentCellType26;
            this.fpSpread1_Sheet9.Cells.Get(7, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(7, 3).Value = 0.5;
            this.fpSpread1_Sheet9.Cells.Get(7, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(8, 0).Border = complexBorder101;
            this.fpSpread1_Sheet9.Cells.Get(8, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(8, 0).Value = "所得税率";
            this.fpSpread1_Sheet9.Cells.Get(8, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(8, 1).Border = complexBorder102;
            percentCellType27.FixedPoint = true;
            percentCellType27.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(8, 1).CellType = percentCellType27;
            this.fpSpread1_Sheet9.Cells.Get(8, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(8, 1).Value = 0.33;
            this.fpSpread1_Sheet9.Cells.Get(8, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(8, 2).Border = complexBorder103;
            this.fpSpread1_Sheet9.Cells.Get(8, 2).CellType = generalCellType72;
            this.fpSpread1_Sheet9.Cells.Get(8, 2).Font = new System.Drawing.Font("宋体", 9F);
            this.fpSpread1_Sheet9.Cells.Get(8, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(8, 2).Value = "经营成本";
            this.fpSpread1_Sheet9.Cells.Get(8, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(8, 3).Border = complexBorder104;
            percentCellType28.FixedPoint = true;
            percentCellType28.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(8, 3).CellType = percentCellType28;
            this.fpSpread1_Sheet9.Cells.Get(8, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(8, 3).Value = 0.05;
            this.fpSpread1_Sheet9.Cells.Get(8, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(9, 0).Border = complexBorder105;
            this.fpSpread1_Sheet9.Cells.Get(9, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(9, 0).Value = "折旧还贷率";
            this.fpSpread1_Sheet9.Cells.Get(9, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(9, 1).Border = complexBorder106;
            percentCellType29.FixedPoint = true;
            percentCellType29.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(9, 1).CellType = percentCellType29;
            this.fpSpread1_Sheet9.Cells.Get(9, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(9, 1).Value = 1;
            this.fpSpread1_Sheet9.Cells.Get(9, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(9, 2).Border = complexBorder107;
            this.fpSpread1_Sheet9.Cells.Get(9, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(9, 2).Value = "开始建设年度";
            this.fpSpread1_Sheet9.Cells.Get(9, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(9, 3).Border = complexBorder108;
            numberCellType23.DecimalPlaces = 0;
            numberCellType23.MaximumValue = 999999999;
            numberCellType23.MinimumValue = -999999900;
            this.fpSpread1_Sheet9.Cells.Get(9, 3).CellType = numberCellType23;
            this.fpSpread1_Sheet9.Cells.Get(9, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(9, 3).Value = 0;
            this.fpSpread1_Sheet9.Cells.Get(9, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(10, 0).Border = complexBorder109;
            this.fpSpread1_Sheet9.Cells.Get(10, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(10, 0).Value = "股本金分利";
            this.fpSpread1_Sheet9.Cells.Get(10, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(10, 1).Border = complexBorder110;
            percentCellType30.FixedPoint = true;
            percentCellType30.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(10, 1).CellType = percentCellType30;
            this.fpSpread1_Sheet9.Cells.Get(10, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(10, 1).Value = 0.057;
            this.fpSpread1_Sheet9.Cells.Get(10, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(10, 2).Border = complexBorder111;
            this.fpSpread1_Sheet9.Cells.Get(10, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(10, 2).Value = "建设年限";
            this.fpSpread1_Sheet9.Cells.Get(10, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(10, 3).Border = complexBorder112;
            numberCellType24.DecimalPlaces = 0;
            numberCellType24.MaximumValue = 9999999;
            numberCellType24.MinimumValue = -999999900;
            this.fpSpread1_Sheet9.Cells.Get(10, 3).CellType = numberCellType24;
            this.fpSpread1_Sheet9.Cells.Get(10, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(10, 3).Value = 0;
            this.fpSpread1_Sheet9.Cells.Get(10, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(11, 0).Border = complexBorder113;
            this.fpSpread1_Sheet9.Cells.Get(11, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(11, 0).Value = "城市维护及建设税税率";
            this.fpSpread1_Sheet9.Cells.Get(11, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(11, 1).Border = complexBorder114;
            percentCellType31.FixedPoint = true;
            percentCellType31.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(11, 1).CellType = percentCellType31;
            this.fpSpread1_Sheet9.Cells.Get(11, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(11, 1).Value = 0.07;
            this.fpSpread1_Sheet9.Cells.Get(11, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(11, 2).Border = complexBorder115;
            this.fpSpread1_Sheet9.Cells.Get(11, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(11, 2).Value = "售电量";
            this.fpSpread1_Sheet9.Cells.Get(11, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(11, 3).Border = complexBorder116;
            textCellType1.CharacterSet = FarPoint.Win.Spread.CellType.CharacterSet.Numeric;
            textCellType1.MaxLength = 12;
            this.fpSpread1_Sheet9.Cells.Get(11, 3).CellType = textCellType1;
            this.fpSpread1_Sheet9.Cells.Get(11, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(11, 3).Value = "0";
            this.fpSpread1_Sheet9.Cells.Get(11, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(12, 0).Border = complexBorder117;
            this.fpSpread1_Sheet9.Cells.Get(12, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(12, 0).Value = "县镇维护及建设税税率";
            this.fpSpread1_Sheet9.Cells.Get(12, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(12, 1).Border = complexBorder118;
            percentCellType32.FixedPoint = true;
            percentCellType32.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(12, 1).CellType = percentCellType32;
            this.fpSpread1_Sheet9.Cells.Get(12, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(12, 1).Value = 0.05;
            this.fpSpread1_Sheet9.Cells.Get(12, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(12, 2).Border = complexBorder119;
            this.fpSpread1_Sheet9.Cells.Get(12, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(12, 2).Value = "售电率";
            this.fpSpread1_Sheet9.Cells.Get(12, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(12, 3).Border = complexBorder120;
            percentCellType33.FixedPoint = true;
            percentCellType33.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(12, 3).CellType = percentCellType33;
            this.fpSpread1_Sheet9.Cells.Get(12, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(12, 3).Value = 0;
            this.fpSpread1_Sheet9.Cells.Get(13, 0).Border = complexBorder121;
            this.fpSpread1_Sheet9.Cells.Get(13, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(13, 0).Value = "其它地区维护及建设税税率";
            this.fpSpread1_Sheet9.Cells.Get(13, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(13, 1).Border = complexBorder122;
            percentCellType34.FixedPoint = true;
            percentCellType34.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(13, 1).CellType = percentCellType34;
            this.fpSpread1_Sheet9.Cells.Get(13, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(13, 1).Value = 0.01;
            this.fpSpread1_Sheet9.Cells.Get(13, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(13, 2).Border = complexBorder123;
            this.fpSpread1_Sheet9.Cells.Get(13, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(13, 2).Value = "项目计算期";
            this.fpSpread1_Sheet9.Cells.Get(13, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(13, 3).Border = complexBorder124;
            numberCellType25.DecimalPlaces = 0;
            numberCellType25.MaximumValue = 9999999;
            numberCellType25.MinimumValue = -999999900;
            this.fpSpread1_Sheet9.Cells.Get(13, 3).CellType = numberCellType25;
            this.fpSpread1_Sheet9.Cells.Get(13, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(13, 3).Value = 0;
            this.fpSpread1_Sheet9.Cells.Get(13, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(14, 0).Border = complexBorder125;
            this.fpSpread1_Sheet9.Cells.Get(14, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(14, 0).Value = "还贷系数";
            this.fpSpread1_Sheet9.Cells.Get(14, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(14, 1).Border = complexBorder126;
            numberCellType26.DecimalPlaces = 0;
            numberCellType26.MaximumValue = 10000000;
            numberCellType26.MinimumValue = -10000000;
            this.fpSpread1_Sheet9.Cells.Get(14, 1).CellType = numberCellType26;
            this.fpSpread1_Sheet9.Cells.Get(14, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(14, 1).Value = 0;
            this.fpSpread1_Sheet9.Cells.Get(14, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(14, 2).Border = complexBorder127;
            this.fpSpread1_Sheet9.Cells.Get(14, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(14, 2).Value = "银行利率";
            this.fpSpread1_Sheet9.Cells.Get(14, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(14, 3).Border = complexBorder128;
            percentCellType35.FixedPoint = true;
            percentCellType35.PercentSign = "%";
            this.fpSpread1_Sheet9.Cells.Get(14, 3).CellType = percentCellType35;
            this.fpSpread1_Sheet9.Cells.Get(14, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fpSpread1_Sheet9.Cells.Get(14, 3).Value = 0.08;
            this.fpSpread1_Sheet9.Cells.Get(14, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet9.Cells.Get(15, 0).Border = complexBorder129;
            this.fpSpread1_Sheet9.Cells.Get(15, 0).Value = "投资年度";
            this.fpSpread1_Sheet9.Cells.Get(16, 0).Border = complexBorder130;
            this.fpSpread1_Sheet9.Cells.Get(16, 0).Value = "投资金额";
            this.fpSpread1_Sheet9.Cells.Get(17, 0).Border = complexBorder131;
            this.fpSpread1_Sheet9.Cells.Get(17, 0).Value = "逐年投资比例";
            this.fpSpread1_Sheet9.Cells.Get(18, 0).Border = complexBorder132;
            this.fpSpread1_Sheet9.Cells.Get(18, 0).Value = "增售电量";
            this.fpSpread1_Sheet9.Cells.Get(19, 0).Border = complexBorder133;
            this.fpSpread1_Sheet9.Cells.Get(19, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(19, 0).Value = "线损率";
            this.fpSpread1_Sheet9.Cells.Get(19, 1).Border = complexBorder134;
            this.fpSpread1_Sheet9.Cells.Get(19, 1).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(19, 1).ParseFormatInfo)).PercentDecimalDigits = 1;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(19, 1).ParseFormatInfo)).PercentGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet9.Cells.Get(19, 1).ParseFormatString = "P";
            this.fpSpread1_Sheet9.Cells.Get(19, 1).Value = 0.045;
            this.fpSpread1_Sheet9.Cells.Get(19, 2).Border = complexBorder135;
            this.fpSpread1_Sheet9.Cells.Get(19, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(19, 2).Value = "维护修理费";
            this.fpSpread1_Sheet9.Cells.Get(19, 3).Border = complexBorder136;
            this.fpSpread1_Sheet9.Cells.Get(19, 3).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(19, 3).ParseFormatInfo)).PercentDecimalDigits = 1;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(19, 3).ParseFormatInfo)).PercentGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet9.Cells.Get(19, 3).ParseFormatString = "P";
            this.fpSpread1_Sheet9.Cells.Get(19, 3).Value = 0.025;
            this.fpSpread1_Sheet9.Cells.Get(20, 0).Border = complexBorder137;
            this.fpSpread1_Sheet9.Cells.Get(20, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(20, 0).Value = "年人均工资";
            this.fpSpread1_Sheet9.Cells.Get(20, 1).Border = complexBorder138;
            this.fpSpread1_Sheet9.Cells.Get(20, 1).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(20, 1).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(20, 1).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet9.Cells.Get(20, 1).ParseFormatString = "n";
            this.fpSpread1_Sheet9.Cells.Get(20, 1).Value = 50000;
            this.fpSpread1_Sheet9.Cells.Get(20, 2).Border = complexBorder139;
            this.fpSpread1_Sheet9.Cells.Get(20, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(20, 2).Value = "保险费率";
            this.fpSpread1_Sheet9.Cells.Get(20, 3).Border = complexBorder140;
            this.fpSpread1_Sheet9.Cells.Get(20, 3).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(20, 3).ParseFormatInfo)).PercentGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet9.Cells.Get(20, 3).ParseFormatString = "P";
            this.fpSpread1_Sheet9.Cells.Get(20, 3).Value = 0.0025;
            this.fpSpread1_Sheet9.Cells.Get(21, 0).Border = complexBorder141;
            this.fpSpread1_Sheet9.Cells.Get(21, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(21, 0).Value = "福利保险系数";
            this.fpSpread1_Sheet9.Cells.Get(21, 1).Border = complexBorder142;
            this.fpSpread1_Sheet9.Cells.Get(21, 1).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(21, 1).ParseFormatInfo)).PercentDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(21, 1).ParseFormatInfo)).PercentGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet9.Cells.Get(21, 1).ParseFormatString = "P";
            this.fpSpread1_Sheet9.Cells.Get(21, 1).Value = 0.53;
            this.fpSpread1_Sheet9.Cells.Get(21, 2).Border = complexBorder143;
            this.fpSpread1_Sheet9.Cells.Get(21, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(21, 2).Value = "其他费用";
            this.fpSpread1_Sheet9.Cells.Get(21, 3).Border = complexBorder144;
            this.fpSpread1_Sheet9.Cells.Get(21, 3).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(21, 3).ParseFormatInfo)).PercentDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(21, 3).ParseFormatInfo)).PercentGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet9.Cells.Get(21, 3).ParseFormatString = "P";
            this.fpSpread1_Sheet9.Cells.Get(21, 3).Value = 0.02;
            this.fpSpread1_Sheet9.Cells.Get(22, 0).Border = complexBorder145;
            this.fpSpread1_Sheet9.Cells.Get(22, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(22, 0).Value = "材料费";
            this.fpSpread1_Sheet9.Cells.Get(22, 1).Border = complexBorder146;
            this.fpSpread1_Sheet9.Cells.Get(22, 1).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(22, 1).ParseFormatInfo)).PercentDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(22, 1).ParseFormatInfo)).PercentGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet9.Cells.Get(22, 1).ParseFormatString = "P";
            this.fpSpread1_Sheet9.Cells.Get(22, 1).Value = 0.02;
            this.fpSpread1_Sheet9.Cells.Get(22, 2).Border = complexBorder147;
            this.fpSpread1_Sheet9.Cells.Get(22, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(22, 2).Value = "内部收益率";
            this.fpSpread1_Sheet9.Cells.Get(22, 3).Border = complexBorder148;
            this.fpSpread1_Sheet9.Cells.Get(22, 3).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(22, 3).ParseFormatInfo)).PercentDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(22, 3).ParseFormatInfo)).PercentGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet9.Cells.Get(22, 3).ParseFormatString = "P";
            this.fpSpread1_Sheet9.Cells.Get(22, 3).Value = 0.07;
            this.fpSpread1_Sheet9.Cells.Get(23, 0).Border = complexBorder149;
            this.fpSpread1_Sheet9.Cells.Get(23, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(23, 0).Value = "定员";
            this.fpSpread1_Sheet9.Cells.Get(23, 1).Border = complexBorder150;
            this.fpSpread1_Sheet9.Cells.Get(23, 1).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(23, 1).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(23, 1).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet9.Cells.Get(23, 1).ParseFormatString = "n";
            this.fpSpread1_Sheet9.Cells.Get(23, 1).Value = 485;
            this.fpSpread1_Sheet9.Cells.Get(23, 2).Border = complexBorder151;
            this.fpSpread1_Sheet9.Cells.Get(23, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet9.Cells.Get(23, 2).Value = "购电价";
            this.fpSpread1_Sheet9.Cells.Get(23, 3).Border = complexBorder152;
            this.fpSpread1_Sheet9.Cells.Get(23, 3).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet9.Cells.Get(23, 3).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet9.Cells.Get(23, 3).ParseFormatString = "N";
            this.fpSpread1_Sheet9.Cells.Get(23, 3).Value = 338.12;
            this.fpSpread1_Sheet9.ColumnHeader.AutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
            this.fpSpread1_Sheet9.Columns.Default.Width = 64F;
            this.fpSpread1_Sheet9.Columns.Get(0).Width = 202F;
            this.fpSpread1_Sheet9.Columns.Get(1).Width = 128F;
            this.fpSpread1_Sheet9.Columns.Get(2).Width = 129F;
            this.fpSpread1_Sheet9.Columns.Get(3).Width = 109F;
            this.fpSpread1_Sheet9.DefaultStyleName = "Excel-0-15";
            this.fpSpread1_Sheet9.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet9.CellChanged += new FarPoint.Win.Spread.SheetViewEventHandler(this.fpSpread1_Sheet9_CellChanged);
            // 
            // barManager1
            // 
            this.barManager1.AllowCustomization = false;
            this.barManager1.AllowMoveBarOnToolbar = false;
            this.barManager1.AllowQuickCustomization = false;
            this.barManager1.AllowShowToolbarsPopup = false;
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.bar1});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.Form = this;
            this.barManager1.Images = this.imageList1;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItem1,
            this.barClose,
            this.barList,
            this.barAdditem,
            this.barAdd1item,
            this.barEdititem,
            this.barDelitem,
            this.barButtonItem2,
            this.barPrint,
            this.barCS,
            this.barSave,
            this.barButtonItem3,
            this.barButtonItem5,
            this.barButtonItem4});
            this.barManager1.MaxItemId = 27;
            this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemComboBox1});
            // 
            // bar1
            // 
            this.bar1.BarName = "Custom 1";
            this.bar1.DockCol = 0;
            this.bar1.DockRow = 0;
            this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barList, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4),
            new DevExpress.XtraBars.LinkPersistInfo(this.barCS),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSave),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem5),
            new DevExpress.XtraBars.LinkPersistInfo(this.barPrint),
            new DevExpress.XtraBars.LinkPersistInfo(this.barClose)});
            this.bar1.OptionsBar.AllowQuickCustomization = false;
            this.bar1.OptionsBar.DrawDragBorder = false;
            this.bar1.OptionsBar.RotateWhenVertical = false;
            this.bar1.Text = "Custom 1";
            // 
            // barList
            // 
            this.barList.Caption = "目录维护";
            this.barList.Id = 12;
            this.barList.ImageIndex = 27;
            this.barList.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barAdditem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barAdd1item),
            new DevExpress.XtraBars.LinkPersistInfo(this.barEdititem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barDelitem)});
            this.barList.Name = "barList";
            // 
            // barAdditem
            // 
            this.barAdditem.Caption = "添加目录";
            this.barAdditem.Id = 13;
            this.barAdditem.ImageIndex = 2;
            this.barAdditem.Name = "barAdditem";
            this.barAdditem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barAdditem_ItemClick);
            // 
            // barAdd1item
            // 
            this.barAdd1item.Caption = "添加子目录";
            this.barAdd1item.Id = 14;
            this.barAdd1item.ImageIndex = 1;
            this.barAdd1item.Name = "barAdd1item";
            this.barAdd1item.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barAdd1item.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barAdd1item_ItemClick);
            // 
            // barEdititem
            // 
            this.barEdititem.Caption = "修改目录";
            this.barEdititem.Id = 15;
            this.barEdititem.ImageIndex = 26;
            this.barEdititem.Name = "barEdititem";
            this.barEdititem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barEdititem_ItemClick);
            // 
            // barDelitem
            // 
            this.barDelitem.Caption = "删除目录";
            this.barDelitem.Id = 16;
            this.barDelitem.ImageIndex = 3;
            this.barDelitem.Name = "barDelitem";
            this.barDelitem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barDelitem_ItemClick);
            // 
            // barButtonItem4
            // 
            this.barButtonItem4.Caption = "打开";
            this.barButtonItem4.Id = 26;
            this.barButtonItem4.ImageIndex = 24;
            this.barButtonItem4.Name = "barButtonItem4";
            this.barButtonItem4.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem4_ItemClick);
            // 
            // barCS
            // 
            this.barCS.Caption = "参数设置";
            this.barCS.Id = 21;
            this.barCS.ImageIndex = 8;
            this.barCS.Name = "barCS";
            this.barCS.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barCS.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barCS_ItemClick);
            // 
            // barSave
            // 
            this.barSave.Caption = "保存";
            this.barSave.Id = 22;
            this.barSave.ImageIndex = 9;
            this.barSave.Name = "barSave";
            this.barSave.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barSave_ItemClick);
            // 
            // barButtonItem3
            // 
            this.barButtonItem3.Caption = "保存模板";
            this.barButtonItem3.Id = 23;
            this.barButtonItem3.Name = "barButtonItem3";
            this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
            // 
            // barButtonItem5
            // 
            this.barButtonItem5.Caption = "导出Excel";
            this.barButtonItem5.Id = 25;
            this.barButtonItem5.ImageIndex = 17;
            this.barButtonItem5.Name = "barButtonItem5";
            this.barButtonItem5.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
            // 
            // barPrint
            // 
            this.barPrint.Caption = "选择";
            this.barPrint.Id = 19;
            this.barPrint.ImageIndex = 28;
            this.barPrint.Name = "barPrint";
            this.barPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barPrint_ItemClick);
            // 
            // barClose
            // 
            this.barClose.Caption = "关闭";
            this.barClose.Id = 5;
            this.barClose.ImageIndex = 30;
            this.barClose.Name = "barClose";
            this.barClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barClose_ItemClick);
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "新建.ico");
            this.imageList1.Images.SetKeyName(1, "添加下级.ico");
            this.imageList1.Images.SetKeyName(2, "添加同级.ico");
            this.imageList1.Images.SetKeyName(3, "删除.ico");
            this.imageList1.Images.SetKeyName(4, "关闭.ico");
            this.imageList1.Images.SetKeyName(5, "修改.ico");
            this.imageList1.Images.SetKeyName(6, "打印.ico");
            this.imageList1.Images.SetKeyName(7, "新建.ico");
            this.imageList1.Images.SetKeyName(8, "发送.ico");
            this.imageList1.Images.SetKeyName(9, "保存.ico");
            this.imageList1.Images.SetKeyName(10, "审批.ico");
            this.imageList1.Images.SetKeyName(11, "新建.ico");
            this.imageList1.Images.SetKeyName(12, "修改.ico");
            this.imageList1.Images.SetKeyName(13, "关闭.ico");
            this.imageList1.Images.SetKeyName(14, "打印.ico");
            this.imageList1.Images.SetKeyName(15, "三等功发1.ico");
            this.imageList1.Images.SetKeyName(16, "审核.ico");
            this.imageList1.Images.SetKeyName(17, "35.ico");
            this.imageList1.Images.SetKeyName(18, "布局.ico");
            this.imageList1.Images.SetKeyName(19, "审批.ico");
            this.imageList1.Images.SetKeyName(20, "关闭.ico");
            this.imageList1.Images.SetKeyName(21, "修改.ico");
            this.imageList1.Images.SetKeyName(22, "新建.ico");
            this.imageList1.Images.SetKeyName(23, "查询.ico");
            this.imageList1.Images.SetKeyName(24, "审核.ico");
            this.imageList1.Images.SetKeyName(25, "作废.ico");
            this.imageList1.Images.SetKeyName(26, "修改.ico");
            this.imageList1.Images.SetKeyName(27, "新建.ico");
            this.imageList1.Images.SetKeyName(28, "审批.ico");
            this.imageList1.Images.SetKeyName(29, "三等功发1.ico");
            this.imageList1.Images.SetKeyName(30, "关闭.ico");
            this.imageList1.Images.SetKeyName(31, "打回重新编.ico");
            this.imageList1.Images.SetKeyName(32, "books.ico");
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 0;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // barButtonItem2
            // 
            this.barButtonItem2.Caption = "添加文字资料";
            this.barButtonItem2.Id = 17;
            this.barButtonItem2.Name = "barButtonItem2";
            // 
            // repositoryItemComboBox1
            // 
            this.repositoryItemComboBox1.AutoHeight = false;
            this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
            // 
            // FrmEconomyAnalysis
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(822, 487);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "FrmEconomyAnalysis";
            this.Text = "经济分析";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.FrmLayoutContents_Load);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmEconomyAnalysis_FormClosing);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ChapterNameTextEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.RemarkMemoExEdit)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     FarPoint.Win.Spread.CellType.ColumnHeaderRenderer columnHeaderRenderer2          = new FarPoint.Win.Spread.CellType.ColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.RowHeaderRenderer    rowHeaderRenderer2             = new FarPoint.Win.Spread.CellType.RowHeaderRenderer();
     FarPoint.Win.Spread.CellType.ColumnHeaderRenderer columnHeaderRenderer1          = new FarPoint.Win.Spread.CellType.ColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.RowHeaderRenderer    rowHeaderRenderer1             = new FarPoint.Win.Spread.CellType.RowHeaderRenderer();
     FarPoint.Win.Spread.CellType.ColumnHeaderRenderer columnHeaderRenderer3          = new FarPoint.Win.Spread.CellType.ColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.RowHeaderRenderer    rowHeaderRenderer3             = new FarPoint.Win.Spread.CellType.RowHeaderRenderer();
     FarPoint.Win.Spread.CellType.ColumnHeaderRenderer columnHeaderRenderer4          = new FarPoint.Win.Spread.CellType.ColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.RowHeaderRenderer    rowHeaderRenderer4             = new FarPoint.Win.Spread.CellType.RowHeaderRenderer();
     FarPoint.Win.Spread.DefaultFocusIndicatorRenderer defaultFocusIndicatorRenderer1 = new FarPoint.Win.Spread.DefaultFocusIndicatorRenderer();
     FarPoint.Win.Spread.DefaultScrollBarRenderer      defaultScrollBarRenderer1      = new FarPoint.Win.Spread.DefaultScrollBarRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle1 = new FarPoint.Win.Spread.NamedStyle("HeaderDefault");
     FarPoint.Win.Spread.NamedStyle namedStyle2 = new FarPoint.Win.Spread.NamedStyle("RowHeaderDefault");
     FarPoint.Win.Spread.NamedStyle namedStyle3 = new FarPoint.Win.Spread.NamedStyle("CornerDefault");
     FarPoint.Win.Spread.CellType.CornerRenderer cornerRenderer1 = new FarPoint.Win.Spread.CellType.CornerRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle4 = new FarPoint.Win.Spread.NamedStyle("DataAreaDefault");
     FarPoint.Win.Spread.CellType.GeneralCellType  generalCellType1          = new FarPoint.Win.Spread.CellType.GeneralCellType();
     FarPoint.Win.Spread.DefaultScrollBarRenderer  defaultScrollBarRenderer2 = new FarPoint.Win.Spread.DefaultScrollBarRenderer();
     FarPoint.Win.Spread.CellType.TextCellType     textCellType1             = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.Spread.CellType.TextCellType     textCellType2             = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.Spread.CellType.ComboBoxCellType comboBoxCellType1         = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType1         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType2         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType3         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType4         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType5         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType6         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     this.Button_deletetable = new System.Windows.Forms.Button();
     this.DataItems          = new FarPoint.Win.Spread.FpSpread();
     this.DataItems_Sheet1   = new FarPoint.Win.Spread.SheetView();
     this.Button_cancel      = new System.Windows.Forms.Button();
     this.label2             = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.DataItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataItems_Sheet1)).BeginInit();
     this.SuspendLayout();
     columnHeaderRenderer2.BackColor         = System.Drawing.SystemColors.Control;
     columnHeaderRenderer2.Font              = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     columnHeaderRenderer2.ForeColor         = System.Drawing.SystemColors.ControlText;
     columnHeaderRenderer2.Name              = "columnHeaderRenderer2";
     columnHeaderRenderer2.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     columnHeaderRenderer2.TextRotationAngle = 0;
     rowHeaderRenderer2.BackColor            = System.Drawing.SystemColors.Control;
     rowHeaderRenderer2.Font                 = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     rowHeaderRenderer2.ForeColor            = System.Drawing.SystemColors.ControlText;
     rowHeaderRenderer2.Name                 = "rowHeaderRenderer2";
     rowHeaderRenderer2.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     rowHeaderRenderer2.TextRotationAngle    = 0;
     columnHeaderRenderer1.BackColor         = System.Drawing.SystemColors.Control;
     columnHeaderRenderer1.Font              = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     columnHeaderRenderer1.ForeColor         = System.Drawing.SystemColors.ControlText;
     columnHeaderRenderer1.Name              = "columnHeaderRenderer1";
     columnHeaderRenderer1.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     columnHeaderRenderer1.TextRotationAngle = 0;
     rowHeaderRenderer1.BackColor            = System.Drawing.SystemColors.Control;
     rowHeaderRenderer1.Font                 = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     rowHeaderRenderer1.ForeColor            = System.Drawing.SystemColors.ControlText;
     rowHeaderRenderer1.Name                 = "rowHeaderRenderer1";
     rowHeaderRenderer1.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     rowHeaderRenderer1.TextRotationAngle    = 0;
     columnHeaderRenderer3.BackColor         = System.Drawing.SystemColors.Control;
     columnHeaderRenderer3.Font              = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     columnHeaderRenderer3.ForeColor         = System.Drawing.SystemColors.ControlText;
     columnHeaderRenderer3.Name              = "columnHeaderRenderer3";
     columnHeaderRenderer3.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     columnHeaderRenderer3.TextRotationAngle = 0;
     rowHeaderRenderer3.BackColor            = System.Drawing.SystemColors.Control;
     rowHeaderRenderer3.Font                 = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     rowHeaderRenderer3.ForeColor            = System.Drawing.SystemColors.ControlText;
     rowHeaderRenderer3.Name                 = "rowHeaderRenderer3";
     rowHeaderRenderer3.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     rowHeaderRenderer3.TextRotationAngle    = 0;
     columnHeaderRenderer4.BackColor         = System.Drawing.SystemColors.Control;
     columnHeaderRenderer4.Font              = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     columnHeaderRenderer4.ForeColor         = System.Drawing.SystemColors.ControlText;
     columnHeaderRenderer4.Name              = "columnHeaderRenderer4";
     columnHeaderRenderer4.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     columnHeaderRenderer4.TextRotationAngle = 0;
     rowHeaderRenderer4.BackColor            = System.Drawing.SystemColors.Control;
     rowHeaderRenderer4.Font                 = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     rowHeaderRenderer4.ForeColor            = System.Drawing.SystemColors.ControlText;
     rowHeaderRenderer4.Name                 = "rowHeaderRenderer4";
     rowHeaderRenderer4.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     rowHeaderRenderer4.TextRotationAngle    = 0;
     //
     // Button_deletetable
     //
     this.Button_deletetable.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.Button_deletetable.Location  = new System.Drawing.Point(12, 513);
     this.Button_deletetable.Name      = "Button_deletetable";
     this.Button_deletetable.Size      = new System.Drawing.Size(108, 23);
     this.Button_deletetable.TabIndex  = 3;
     this.Button_deletetable.Text      = "删除所选行";
     this.Button_deletetable.UseVisualStyleBackColor = true;
     this.Button_deletetable.Click += new System.EventHandler(this.Button_deletetable_Click);
     //
     // DataItems
     //
     this.DataItems.AccessibleDescription        = "DataItems, Sheet1";
     this.DataItems.BackColor                    = System.Drawing.SystemColors.Control;
     this.DataItems.FocusRenderer                = defaultFocusIndicatorRenderer1;
     this.DataItems.HorizontalScrollBar.Buttons  = new FarPoint.Win.Spread.FpScrollBarButtonCollection("BackwardLineButton,ThumbTrack,ForwardLineButton");
     this.DataItems.HorizontalScrollBar.Name     = "";
     this.DataItems.HorizontalScrollBar.Renderer = defaultScrollBarRenderer1;
     this.DataItems.HorizontalScrollBar.TabIndex = 14;
     this.DataItems.HorizontalScrollBarPolicy    = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.DataItems.Location         = new System.Drawing.Point(12, 26);
     this.DataItems.Name             = "DataItems";
     namedStyle1.BackColor           = System.Drawing.SystemColors.Control;
     namedStyle1.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle1.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle1.Renderer            = columnHeaderRenderer4;
     namedStyle1.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle2.BackColor           = System.Drawing.SystemColors.Control;
     namedStyle2.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle2.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle2.Renderer            = rowHeaderRenderer4;
     namedStyle2.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle3.BackColor           = System.Drawing.SystemColors.Control;
     namedStyle3.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle3.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle3.Renderer            = cornerRenderer1;
     namedStyle3.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle4.BackColor           = System.Drawing.SystemColors.Window;
     namedStyle4.CellType            = generalCellType1;
     namedStyle4.ForeColor           = System.Drawing.SystemColors.WindowText;
     namedStyle4.Renderer            = generalCellType1;
     this.DataItems.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] {
         namedStyle1,
         namedStyle2,
         namedStyle3,
         namedStyle4
     });
     this.DataItems.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.DataItems.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.DataItems_Sheet1
     });
     this.DataItems.Size     = new System.Drawing.Size(767, 472);
     this.DataItems.Skin     = FarPoint.Win.Spread.DefaultSpreadSkins.Classic;
     this.DataItems.TabIndex = 4;
     this.DataItems.VerticalScrollBar.Buttons  = new FarPoint.Win.Spread.FpScrollBarButtonCollection("BackwardLineButton,ThumbTrack,ForwardLineButton");
     this.DataItems.VerticalScrollBar.Name     = "";
     this.DataItems.VerticalScrollBar.Renderer = defaultScrollBarRenderer2;
     this.DataItems.VerticalScrollBar.TabIndex = 15;
     this.DataItems.VerticalScrollBarPolicy    = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     //
     // DataItems_Sheet1
     //
     this.DataItems_Sheet1.Reset();
     this.DataItems_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.DataItems_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.DataItems_Sheet1.ColumnCount    = 9;
     this.DataItems_Sheet1.RowCount       = 0;
     this.DataItems_Sheet1.ColumnHeader.DefaultStyle.Parent   = "HeaderDefault";
     this.DataItems_Sheet1.Columns.Get(0).CellType            = textCellType1;
     this.DataItems_Sheet1.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(0).Locked              = true;
     this.DataItems_Sheet1.Columns.Get(0).Width               = 120F;
     this.DataItems_Sheet1.Columns.Get(1).CellType            = textCellType2;
     this.DataItems_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(1).Locked              = false;
     this.DataItems_Sheet1.Columns.Get(1).Width               = 120F;
     comboBoxCellType1.ButtonAlign = FarPoint.Win.ButtonAlign.Right;
     comboBoxCellType1.Items       = new string[] {
         "文本",
         "长文本",
         "数字",
         "掩码",
         "日期时间",
         "下拉框",
         "百分号",
         "图片",
         "超链接",
         "货币",
         "复选框",
         "上下标",
         "条形码"
     };
     this.DataItems_Sheet1.Columns.Get(2).CellType            = comboBoxCellType1;
     this.DataItems_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(2).Locked               = false;
     this.DataItems_Sheet1.Columns.Get(2).Width                = 100F;
     this.DataItems_Sheet1.Columns.Get(3).CellType             = checkBoxCellType1;
     this.DataItems_Sheet1.Columns.Get(3).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(3).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(3).Width                = 72F;
     this.DataItems_Sheet1.Columns.Get(4).CellType             = checkBoxCellType2;
     this.DataItems_Sheet1.Columns.Get(4).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(4).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(5).CellType             = checkBoxCellType3;
     this.DataItems_Sheet1.Columns.Get(5).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(5).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(6).CellType             = checkBoxCellType4;
     this.DataItems_Sheet1.Columns.Get(6).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(6).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(7).CellType             = checkBoxCellType5;
     this.DataItems_Sheet1.Columns.Get(7).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(7).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(8).CellType             = checkBoxCellType6;
     this.DataItems_Sheet1.Columns.Get(8).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(8).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.RowHeader.Columns.Default.Resizable = false;
     this.DataItems_Sheet1.RowHeader.DefaultStyle.Parent       = "RowHeaderDefault";
     this.DataItems_Sheet1.RowHeader.Visible       = false;
     this.DataItems_Sheet1.SheetCornerStyle.Parent = "CornerDefault";
     this.DataItems_Sheet1.VisualStyles            = FarPoint.Win.VisualStyles.Off;
     this.DataItems_Sheet1.ReferenceStyle          = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     this.DataItems.SetActiveViewport(0, 1, 0);
     //
     // Button_cancel
     //
     this.Button_cancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.Button_cancel.Location  = new System.Drawing.Point(704, 513);
     this.Button_cancel.Name      = "Button_cancel";
     this.Button_cancel.Size      = new System.Drawing.Size(75, 23);
     this.Button_cancel.TabIndex  = 7;
     this.Button_cancel.Text      = "关闭";
     this.Button_cancel.UseVisualStyleBackColor = true;
     this.Button_cancel.Click += new System.EventHandler(this.Button_cancel_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("宋体", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(14, 8);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(617, 12);
     this.label2.TabIndex = 10;
     this.label2.Text     = "说明:选中行后点击删除按钮即可,如需完全恢复删除自定义前的单元格样式,请从模板库重新发布该表单。";
     //
     // CellStyleShowDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(790, 554);
     this.Controls.Add(this.DataItems);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.Button_cancel);
     this.Controls.Add(this.Button_deletetable);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "CellStyleShowDialog";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "查看自定义单元格样式";
     this.Load           += new System.EventHandler(this.DetailDataItems_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DataItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataItems_Sheet1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#5
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormsrwGh));
            FarPoint.Win.Spread.NamedStyle namedStyle1 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15", "DataAreaDefault");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType1 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle2 = new FarPoint.Win.Spread.NamedStyle("Excel-0-16");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType2 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle3 = new FarPoint.Win.Spread.NamedStyle("Excel-0-17");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType3 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle4 = new FarPoint.Win.Spread.NamedStyle("Excel-0-18");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType4 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle5 = new FarPoint.Win.Spread.NamedStyle("Excel-0-19");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType5 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle6 = new FarPoint.Win.Spread.NamedStyle("Excel-0-20");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType6 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle7 = new FarPoint.Win.Spread.NamedStyle("Excel-0-21");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType7 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle8 = new FarPoint.Win.Spread.NamedStyle("Excel-0-22");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType8 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle9 = new FarPoint.Win.Spread.NamedStyle("Excel-0-23");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType9 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle10 = new FarPoint.Win.Spread.NamedStyle("Excel-0-24");
            FarPoint.Win.ComplexBorder complexBorder1 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType10 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle11 = new FarPoint.Win.Spread.NamedStyle("Excel-0-25");
            FarPoint.Win.ComplexBorder complexBorder2 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType11 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle12 = new FarPoint.Win.Spread.NamedStyle("Excel-0-26");
            FarPoint.Win.ComplexBorder complexBorder3 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType12 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle13 = new FarPoint.Win.Spread.NamedStyle("Excel-0-27");
            FarPoint.Win.ComplexBorder complexBorder4 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType13 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle14 = new FarPoint.Win.Spread.NamedStyle("Excel-0-28");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType14 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle15 = new FarPoint.Win.Spread.NamedStyle("Excel-0-29");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType15 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle16 = new FarPoint.Win.Spread.NamedStyle("Excel-0-30");
            FarPoint.Win.ComplexBorder complexBorder5 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType16 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle17 = new FarPoint.Win.Spread.NamedStyle("Excel-0-31");
            FarPoint.Win.ComplexBorder complexBorder6 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType17 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle18 = new FarPoint.Win.Spread.NamedStyle("Excel-0-32");
            FarPoint.Win.ComplexBorder complexBorder7 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType18 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle19 = new FarPoint.Win.Spread.NamedStyle("Excel-0-33");
            FarPoint.Win.ComplexBorder complexBorder8 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType19 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle20 = new FarPoint.Win.Spread.NamedStyle("Excel-0-34");
            FarPoint.Win.ComplexBorder complexBorder9 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType20 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle21 = new FarPoint.Win.Spread.NamedStyle("Excel-0-35");
            FarPoint.Win.ComplexBorder complexBorder10 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType21 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle22 = new FarPoint.Win.Spread.NamedStyle("Excel-0-36");
            FarPoint.Win.ComplexBorder complexBorder11 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType22 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle23 = new FarPoint.Win.Spread.NamedStyle("Excel-0-37");
            FarPoint.Win.ComplexBorder complexBorder12 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType23 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle24 = new FarPoint.Win.Spread.NamedStyle("Excel-0-38");
            FarPoint.Win.ComplexBorder complexBorder13 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType24 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle25 = new FarPoint.Win.Spread.NamedStyle("Excel-0-39");
            FarPoint.Win.ComplexBorder complexBorder14 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType25 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle26 = new FarPoint.Win.Spread.NamedStyle("Excel-0-40");
            FarPoint.Win.ComplexBorder complexBorder15 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType26 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle27 = new FarPoint.Win.Spread.NamedStyle("Excel-0-41");
            FarPoint.Win.ComplexBorder complexBorder16 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))))));
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType27 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle28 = new FarPoint.Win.Spread.NamedStyle("Excel-0-42");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType28 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle29 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-基本数据");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType29 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle30 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-筹措表");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType30 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle31 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-还本付息表");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType31 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle32 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-成本费用表");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType32 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle33 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-全投资");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType33 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle34 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-资本金");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType34 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle35 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-损益表");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType35 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle36 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-一览表");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType36 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle37 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-参数");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType37 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.NamedStyle namedStyle38 = new FarPoint.Win.Spread.NamedStyle("Excel-0-15-投资资金");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType38 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.TipAppearance tipAppearance1 = new FarPoint.Win.Spread.TipAppearance();
            System.Globalization.CultureInfo cultureInfo = new System.Globalization.CultureInfo("zh-CN", false);
            FarPoint.Win.ComplexBorder complexBorder17 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder18 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder19 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.ComplexBorder complexBorder20 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine));
            FarPoint.Win.BevelBorder bevelBorder1 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered);
            FarPoint.Win.BevelBorder bevelBorder2 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered);
            FarPoint.Win.BevelBorder bevelBorder3 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered);
            FarPoint.Win.BevelBorder bevelBorder4 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered);
            FarPoint.Win.BevelBorder bevelBorder5 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered);
            FarPoint.Win.BevelBorder bevelBorder6 = new FarPoint.Win.BevelBorder(FarPoint.Win.BevelBorderType.Lowered);
            this.barManager1 = new DevExpress.XtraBars.BarManager();
            this.bar1 = new DevExpress.XtraBars.Bar();
            this.barButtonSave = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonrefresh = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonOut = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemplate = new DevExpress.XtraBars.BarButtonItem();
            this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.barEditItem2 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.barEditItem3 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
            this.barEditItem4 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemComboBox5 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.barEditItem5 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemComboBox6 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repositoryItemTextEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            this.repositoryItemTextEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.fpSpread1 = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_sheetView1 = new FarPoint.Win.Spread.SheetView();
            this.sheetView1 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_sheetView2 = new FarPoint.Win.Spread.SheetView();
            this.sheetView2 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet2 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_sheetView3 = new FarPoint.Win.Spread.SheetView();
            this.sheetView3 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_sheetView4 = new FarPoint.Win.Spread.SheetView();
            this.sheetView4 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_sheetView5 = new FarPoint.Win.Spread.SheetView();
            this.sheetView5 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet3 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_Sheet4 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_sheetView6 = new FarPoint.Win.Spread.SheetView();
            this.sheetView6 = new FarPoint.Win.Spread.SheetView();
            this.fpSpread1_sheetView7 = new FarPoint.Win.Spread.SheetView();
            this.sheetView7 = new FarPoint.Win.Spread.SheetView();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView7)).BeginInit();
            this.SuspendLayout();
            // 
            // barManager1
            // 
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.bar1});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.Form = this;
            this.barManager1.Images = this.imageList1;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonSave,
            this.barButtonrefresh,
            this.barButtonOut,
            this.barButtonItemplate,
            this.barEditItem1,
            this.barEditItem2,
            this.barEditItem3,
            this.barEditItem4,
            this.barEditItem5});
            this.barManager1.MainMenu = this.bar1;
            this.barManager1.MaxItemId = 11;
            this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1,
            this.repositoryItemTextEdit2,
            this.repositoryItemComboBox1,
            this.repositoryItemTextEdit3,
            this.repositoryItemComboBox2,
            this.repositoryItemTextEdit4,
            this.repositoryItemComboBox3,
            this.repositoryItemTextEdit5,
            this.repositoryItemComboBox4,
            this.repositoryItemTextEdit6,
            this.repositoryItemTextEdit7,
            this.repositoryItemComboBox5,
            this.repositoryItemComboBox6,
            this.repositoryItemLookUpEdit1});
            // 
            // bar1
            // 
            this.bar1.BarName = "Custom 1";
            this.bar1.DockCol = 0;
            this.bar1.DockRow = 0;
            this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonSave),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonrefresh),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonOut),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemplate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barEditItem1),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Width, this.barEditItem2, "", false, true, true, 100),
            new DevExpress.XtraBars.LinkPersistInfo(this.barEditItem3),
            new DevExpress.XtraBars.LinkPersistInfo(this.barEditItem4),
            new DevExpress.XtraBars.LinkPersistInfo(this.barEditItem5)});
            this.bar1.OptionsBar.MultiLine = true;
            this.bar1.OptionsBar.UseWholeRow = true;
            this.bar1.Text = "Custom 1";
            // 
            // barButtonSave
            // 
            this.barButtonSave.Caption = "保存";
            this.barButtonSave.Id = 0;
            this.barButtonSave.ImageIndex = 9;
            this.barButtonSave.Name = "barButtonSave";
            this.barButtonSave.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonSave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonSave_ItemClick);
            // 
            // barButtonrefresh
            // 
            this.barButtonrefresh.Caption = "更新数据";
            this.barButtonrefresh.Id = 1;
            this.barButtonrefresh.ImageIndex = 5;
            this.barButtonrefresh.Name = "barButtonrefresh";
            this.barButtonrefresh.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonrefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonrefresh_ItemClick);
            // 
            // barButtonOut
            // 
            this.barButtonOut.Caption = "导出";
            this.barButtonOut.Id = 2;
            this.barButtonOut.ImageIndex = 3;
            this.barButtonOut.Name = "barButtonOut";
            this.barButtonOut.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonOut.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonOut_ItemClick);
            // 
            // barButtonItemplate
            // 
            this.barButtonItemplate.Caption = "保存模板";
            this.barButtonItemplate.Id = 3;
            this.barButtonItemplate.ImageIndex = 7;
            this.barButtonItemplate.Name = "barButtonItemplate";
            this.barButtonItemplate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemplate.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barButtonItemplate.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemplate_ItemClick);
            // 
            // barEditItem1
            // 
            this.barEditItem1.Caption = "起始年";
            this.barEditItem1.Edit = this.repositoryItemComboBox1;
            this.barEditItem1.Id = 5;
            this.barEditItem1.Name = "barEditItem1";
            this.barEditItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barEditItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barEditItem1.Width = 100;
            // 
            // repositoryItemComboBox1
            // 
            this.repositoryItemComboBox1.AutoHeight = false;
            this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox1.Items.AddRange(new object[] {
            "2000",
            "2001",
            "2002",
            "2003",
            "2004",
            "2005",
            "2006",
            "2007",
            "2008",
            "2009",
            "2010",
            "2011",
            "2012",
            "2013",
            "2014",
            "2015"});
            this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
            // 
            // barEditItem2
            // 
            this.barEditItem2.Caption = "比较年";
            this.barEditItem2.Edit = this.repositoryItemComboBox2;
            this.barEditItem2.Id = 6;
            this.barEditItem2.Name = "barEditItem2";
            this.barEditItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barEditItem2.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barEditItem2.Width = 100;
            this.barEditItem2.EditValueChanged += new System.EventHandler(this.barEditItem2_EditValueChanged);
            // 
            // repositoryItemComboBox2
            // 
            this.repositoryItemComboBox2.AutoHeight = false;
            this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox2.Items.AddRange(new object[] {
            "2000",
            "2001",
            "2002",
            "2003",
            "2004",
            "2005",
            "2006",
            "2007",
            "2008",
            "2009",
            "2010",
            "2011",
            "2012",
            "2013",
            "2014",
            "2015"});
            this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
            // 
            // barEditItem3
            // 
            this.barEditItem3.Caption = "选择预测方案";
            this.barEditItem3.Edit = this.repositoryItemLookUpEdit1;
            this.barEditItem3.Id = 8;
            this.barEditItem3.Name = "barEditItem3";
            this.barEditItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barEditItem3.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barEditItem3.Width = 200;
            this.barEditItem3.EditValueChanged += new System.EventHandler(this.barEditItem3_EditValueChanged);
            // 
            // repositoryItemLookUpEdit1
            // 
            this.repositoryItemLookUpEdit1.AutoHeight = false;
            this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemLookUpEdit1.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Title", "预测方案", 100),
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StartYear", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EndYear", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("UserID", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Col1", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
            new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Col2", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None)});
            this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
            // 
            // barEditItem4
            // 
            this.barEditItem4.Caption = "地区";
            this.barEditItem4.Edit = this.repositoryItemComboBox5;
            this.barEditItem4.Id = 9;
            this.barEditItem4.Name = "barEditItem4";
            this.barEditItem4.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barEditItem4.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barEditItem4.Width = 100;
            this.barEditItem4.EditValueChanged += new System.EventHandler(this.barEditItem4_EditValueChanged);
            // 
            // repositoryItemComboBox5
            // 
            this.repositoryItemComboBox5.AutoHeight = false;
            this.repositoryItemComboBox5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox5.Name = "repositoryItemComboBox5";
            // 
            // barEditItem5
            // 
            this.barEditItem5.Caption = "电力类型";
            this.barEditItem5.Edit = this.repositoryItemComboBox6;
            this.barEditItem5.Id = 10;
            this.barEditItem5.Name = "barEditItem5";
            this.barEditItem5.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barEditItem5.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            this.barEditItem5.Width = 100;
            this.barEditItem5.EditValueChanged += new System.EventHandler(this.barEditItem5_EditValueChanged);
            // 
            // repositoryItemComboBox6
            // 
            this.repositoryItemComboBox6.AutoHeight = false;
            this.repositoryItemComboBox6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox6.Items.AddRange(new object[] {
            "受端地区",
            "送端地区",
            "抽水蓄能地区"});
            this.repositoryItemComboBox6.Name = "repositoryItemComboBox6";
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "保存.ico");
            this.imageList1.Images.SetKeyName(1, "打印.ico");
            this.imageList1.Images.SetKeyName(2, "删除.ico");
            this.imageList1.Images.SetKeyName(3, "添加下级.ico");
            this.imageList1.Images.SetKeyName(4, "新建.ico");
            this.imageList1.Images.SetKeyName(5, "修改.ico");
            this.imageList1.Images.SetKeyName(6, "添加同级.ico");
            this.imageList1.Images.SetKeyName(7, "审批.ico");
            this.imageList1.Images.SetKeyName(8, "审核.ico");
            this.imageList1.Images.SetKeyName(9, "关闭.ico");
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // repositoryItemTextEdit2
            // 
            this.repositoryItemTextEdit2.AutoHeight = false;
            this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
            // 
            // repositoryItemTextEdit3
            // 
            this.repositoryItemTextEdit3.AutoHeight = false;
            this.repositoryItemTextEdit3.Name = "repositoryItemTextEdit3";
            // 
            // repositoryItemTextEdit4
            // 
            this.repositoryItemTextEdit4.AutoHeight = false;
            this.repositoryItemTextEdit4.Name = "repositoryItemTextEdit4";
            // 
            // repositoryItemComboBox3
            // 
            this.repositoryItemComboBox3.AutoHeight = false;
            this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox3.Name = "repositoryItemComboBox3";
            // 
            // repositoryItemTextEdit5
            // 
            this.repositoryItemTextEdit5.AutoHeight = false;
            this.repositoryItemTextEdit5.Name = "repositoryItemTextEdit5";
            // 
            // repositoryItemComboBox4
            // 
            this.repositoryItemComboBox4.AutoHeight = false;
            this.repositoryItemComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemComboBox4.Name = "repositoryItemComboBox4";
            // 
            // repositoryItemTextEdit6
            // 
            this.repositoryItemTextEdit6.AutoHeight = false;
            this.repositoryItemTextEdit6.Name = "repositoryItemTextEdit6";
            // 
            // repositoryItemTextEdit7
            // 
            this.repositoryItemTextEdit7.AutoHeight = false;
            this.repositoryItemTextEdit7.Name = "repositoryItemTextEdit7";
            // 
            // fpSpread1
            // 
            this.fpSpread1.AccessibleDescription = "fpSpread1, 主要经济指标, Row 14, Column 0, 7";
            this.fpSpread1.AllowCellOverflow = true;
            this.fpSpread1.AllowUserFormulas = true;
            this.fpSpread1.BackColor = System.Drawing.SystemColors.Control;
            this.fpSpread1.BorderCollapse = FarPoint.Win.Spread.BorderCollapse.Collapse;
            this.fpSpread1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread1.Location = new System.Drawing.Point(0, 57);
            this.fpSpread1.Name = "fpSpread1";
            namedStyle1.CellType = generalCellType1;
            namedStyle1.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle1.Locked = false;
            namedStyle1.Parent = "DataAreaDefault";
            namedStyle1.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle2.CellType = generalCellType2;
            namedStyle2.Locked = false;
            namedStyle2.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
            namedStyle3.CellType = generalCellType3;
            namedStyle3.Locked = false;
            namedStyle3.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
            namedStyle4.CellType = generalCellType4;
            namedStyle4.Locked = false;
            namedStyle4.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
            namedStyle5.CellType = generalCellType5;
            namedStyle5.Locked = false;
            namedStyle5.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
            namedStyle6.CellType = generalCellType6;
            namedStyle6.Locked = false;
            namedStyle6.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Bottom;
            namedStyle7.CellType = generalCellType7;
            namedStyle7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle7.Locked = false;
            namedStyle7.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle8.CellType = generalCellType8;
            namedStyle8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle8.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle8.Locked = false;
            namedStyle8.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle9.CellType = generalCellType9;
            namedStyle9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle9.Locked = false;
            namedStyle9.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle10.Border = complexBorder1;
            namedStyle10.CellType = generalCellType10;
            namedStyle10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle10.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            namedStyle10.Locked = false;
            namedStyle10.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle11.Border = complexBorder2;
            namedStyle11.CellType = generalCellType11;
            namedStyle11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle11.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle11.Locked = false;
            namedStyle11.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle12.Border = complexBorder3;
            namedStyle12.CellType = generalCellType12;
            namedStyle12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle12.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            namedStyle12.Locked = false;
            namedStyle12.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle13.Border = complexBorder4;
            namedStyle13.CellType = generalCellType13;
            namedStyle13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle13.Locked = false;
            namedStyle13.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle14.CellType = generalCellType14;
            namedStyle14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle14.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            namedStyle14.Locked = false;
            namedStyle14.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle15.CellType = generalCellType15;
            namedStyle15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle15.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle15.Locked = false;
            namedStyle15.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle16.Border = complexBorder5;
            namedStyle16.CellType = generalCellType16;
            namedStyle16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle16.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle16.Locked = false;
            namedStyle16.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle17.Border = complexBorder6;
            namedStyle17.CellType = generalCellType17;
            namedStyle17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle17.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle17.Locked = false;
            namedStyle17.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle18.Border = complexBorder7;
            namedStyle18.CellType = generalCellType18;
            namedStyle18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle18.Locked = false;
            namedStyle18.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle19.Border = complexBorder8;
            namedStyle19.CellType = generalCellType19;
            namedStyle19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle19.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            namedStyle19.Locked = false;
            namedStyle19.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle20.Border = complexBorder9;
            namedStyle20.CellType = generalCellType20;
            namedStyle20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle20.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            namedStyle20.Locked = false;
            namedStyle20.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle21.Border = complexBorder10;
            namedStyle21.CellType = generalCellType21;
            namedStyle21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle21.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle21.Locked = false;
            namedStyle21.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle22.Border = complexBorder11;
            namedStyle22.CellType = generalCellType22;
            namedStyle22.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle22.Locked = false;
            namedStyle22.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle23.Border = complexBorder12;
            namedStyle23.CellType = generalCellType23;
            namedStyle23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle23.Locked = false;
            namedStyle23.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle24.Border = complexBorder13;
            namedStyle24.CellType = generalCellType24;
            namedStyle24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle24.Locked = false;
            namedStyle24.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle25.Border = complexBorder14;
            namedStyle25.CellType = generalCellType25;
            namedStyle25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle25.Locked = false;
            namedStyle25.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle26.Border = complexBorder15;
            namedStyle26.CellType = generalCellType26;
            namedStyle26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle26.Locked = false;
            namedStyle26.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle27.Border = complexBorder16;
            namedStyle27.CellType = generalCellType27;
            namedStyle27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle27.Locked = false;
            namedStyle27.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle28.CellType = generalCellType28;
            namedStyle28.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            namedStyle28.Locked = false;
            namedStyle28.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle29.CellType = generalCellType29;
            namedStyle29.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle29.Locked = false;
            namedStyle29.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle30.CellType = generalCellType30;
            namedStyle30.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle30.Locked = false;
            namedStyle30.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle31.CellType = generalCellType31;
            namedStyle31.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle31.Locked = false;
            namedStyle31.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle32.CellType = generalCellType32;
            namedStyle32.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle32.Locked = false;
            namedStyle32.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle33.CellType = generalCellType33;
            namedStyle33.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle33.Locked = false;
            namedStyle33.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle34.CellType = generalCellType34;
            namedStyle34.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle34.Locked = false;
            namedStyle34.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle35.CellType = generalCellType35;
            namedStyle35.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle35.Locked = false;
            namedStyle35.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle36.CellType = generalCellType36;
            namedStyle36.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle36.Locked = false;
            namedStyle36.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle37.CellType = generalCellType37;
            namedStyle37.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle37.Locked = false;
            namedStyle37.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            namedStyle38.CellType = generalCellType38;
            namedStyle38.Font = new System.Drawing.Font("宋体", 9F);
            namedStyle38.Locked = false;
            namedStyle38.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Top;
            this.fpSpread1.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] {
            namedStyle1,
            namedStyle2,
            namedStyle3,
            namedStyle4,
            namedStyle5,
            namedStyle6,
            namedStyle7,
            namedStyle8,
            namedStyle9,
            namedStyle10,
            namedStyle11,
            namedStyle12,
            namedStyle13,
            namedStyle14,
            namedStyle15,
            namedStyle16,
            namedStyle17,
            namedStyle18,
            namedStyle19,
            namedStyle20,
            namedStyle21,
            namedStyle22,
            namedStyle23,
            namedStyle24,
            namedStyle25,
            namedStyle26,
            namedStyle27,
            namedStyle28,
            namedStyle29,
            namedStyle30,
            namedStyle31,
            namedStyle32,
            namedStyle33,
            namedStyle34,
            namedStyle35,
            namedStyle36,
            namedStyle37,
            namedStyle38});
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
            this.fpSpread1_Sheet1,
            this.fpSpread1_sheetView1,
            this.sheetView1,
            this.fpSpread1_sheetView2,
            this.sheetView2,
            this.fpSpread1_Sheet2,
            this.fpSpread1_sheetView3,
            this.sheetView3,
            this.fpSpread1_sheetView4,
            this.sheetView4,
            this.fpSpread1_sheetView5,
            this.sheetView5,
            this.fpSpread1_Sheet3,
            this.fpSpread1_Sheet4,
            this.fpSpread1_sheetView6,
            this.sheetView6,
            this.fpSpread1_sheetView7,
            this.sheetView7});
            this.fpSpread1.Size = new System.Drawing.Size(853, 357);
            this.fpSpread1.TabIndex = 4;
            this.fpSpread1.TabStrip.ActiveSheetTab.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
            this.fpSpread1.TabStrip.ActiveSheetTab.Size = -1;
            this.fpSpread1.TabStrip.DefaultSheetTab.Font = new System.Drawing.Font("Tahoma", 8F);
            this.fpSpread1.TabStrip.DefaultSheetTab.Size = -1;
            this.fpSpread1.TabStripPolicy = FarPoint.Win.Spread.TabStripPolicy.Always;
            this.fpSpread1.TabStripRatio = 0.820627802690583;
            tipAppearance1.BackColor = System.Drawing.SystemColors.Info;
            tipAppearance1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            tipAppearance1.ForeColor = System.Drawing.SystemColors.InfoText;
            this.fpSpread1.TextTipAppearance = tipAppearance1;
            this.fpSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fpSpread1.TabIndexChanged += new System.EventHandler(this.fpSpread1_TabIndexChanged);
            this.fpSpread1.SheetTabClick += new FarPoint.Win.Spread.SheetTabClickEventHandler(this.fpSpread1_SheetTabClick);
            // 
            // fpSpread1_Sheet1
            // 
            this.fpSpread1_Sheet1.Reset();
            this.fpSpread1_Sheet1.SheetName = "主要经济指标";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet1.ColumnCount = 3;
            this.fpSpread1_Sheet1.RowCount = 15;
            this.fpSpread1_Sheet1.ActiveRowIndex = 14;
            this.fpSpread1_Sheet1.AutoUpdateNotes = true;
            this.fpSpread1_Sheet1.Cells.Get(0, 0).ColumnSpan = 3;
            this.fpSpread1_Sheet1.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(0, 0).NoteStyle = FarPoint.Win.Spread.NoteStyle.PopupNote;
            this.fpSpread1_Sheet1.Cells.Get(0, 0).Value = "附表1 铜陵市主要经济指标";
            this.fpSpread1_Sheet1.Cells.Get(0, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(0, 1).Border = complexBorder17;
            this.fpSpread1_Sheet1.Cells.Get(0, 2).Border = complexBorder18;
            this.fpSpread1_Sheet1.Cells.Get(1, 0).ColumnSpan = 3;
            this.fpSpread1_Sheet1.Cells.Get(1, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_Sheet1.Cells.Get(1, 0).Value = "单位: 亿元、亿美元、%";
            this.fpSpread1_Sheet1.Cells.Get(1, 1).Border = complexBorder19;
            this.fpSpread1_Sheet1.Cells.Get(1, 2).Border = complexBorder20;
            this.fpSpread1_Sheet1.Cells.Get(2, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(2, 0).Value = "序号";
            this.fpSpread1_Sheet1.Cells.Get(2, 1).Value = "项目";
            this.fpSpread1_Sheet1.Cells.Get(3, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(3, 0).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(3, 0).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(3, 0).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet1.Cells.Get(3, 0).ParseFormatString = "n";
            this.fpSpread1_Sheet1.Cells.Get(3, 0).RowSpan = 4;
            this.fpSpread1_Sheet1.Cells.Get(3, 0).Value = 1;
            this.fpSpread1_Sheet1.Cells.Get(3, 1).Value = "GDP(2000年可比价)";
            this.fpSpread1_Sheet1.Cells.Get(4, 0).Border = bevelBorder1;
            this.fpSpread1_Sheet1.Cells.Get(4, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(4, 1).Value = "其中:一产";
            this.fpSpread1_Sheet1.Cells.Get(5, 0).Border = bevelBorder2;
            this.fpSpread1_Sheet1.Cells.Get(5, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(5, 1).Value = "    二产";
            this.fpSpread1_Sheet1.Cells.Get(6, 0).Border = bevelBorder3;
            this.fpSpread1_Sheet1.Cells.Get(6, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(6, 1).Value = "      三产";
            this.fpSpread1_Sheet1.Cells.Get(7, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(7, 0).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(7, 0).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(7, 0).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet1.Cells.Get(7, 0).ParseFormatString = "n";
            this.fpSpread1_Sheet1.Cells.Get(7, 0).RowSpan = 3;
            this.fpSpread1_Sheet1.Cells.Get(7, 0).Value = 2;
            this.fpSpread1_Sheet1.Cells.Get(7, 1).Value = "进出口总额";
            this.fpSpread1_Sheet1.Cells.Get(8, 0).Border = bevelBorder4;
            this.fpSpread1_Sheet1.Cells.Get(8, 1).Value = "其中:进口总额";
            this.fpSpread1_Sheet1.Cells.Get(9, 0).Border = bevelBorder5;
            this.fpSpread1_Sheet1.Cells.Get(9, 1).Value = "   出口总额";
            this.fpSpread1_Sheet1.Cells.Get(10, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(10, 0).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(10, 0).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(10, 0).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet1.Cells.Get(10, 0).ParseFormatString = "n";
            this.fpSpread1_Sheet1.Cells.Get(10, 0).Value = 3;
            this.fpSpread1_Sheet1.Cells.Get(10, 1).Value = "全社会固定资产投资";
            this.fpSpread1_Sheet1.Cells.Get(11, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(11, 0).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(11, 0).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(11, 0).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet1.Cells.Get(11, 0).ParseFormatString = "n";
            this.fpSpread1_Sheet1.Cells.Get(11, 0).Value = 4;
            this.fpSpread1_Sheet1.Cells.Get(11, 1).Value = "社会销售品零售总额";
            this.fpSpread1_Sheet1.Cells.Get(12, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(12, 0).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(12, 0).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(12, 0).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet1.Cells.Get(12, 0).ParseFormatString = "n";
            this.fpSpread1_Sheet1.Cells.Get(12, 0).Value = 5;
            this.fpSpread1_Sheet1.Cells.Get(12, 1).Value = "居民消费价格指数";
            this.fpSpread1_Sheet1.Cells.Get(13, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(13, 0).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(13, 0).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(13, 0).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet1.Cells.Get(13, 0).ParseFormatString = "n";
            this.fpSpread1_Sheet1.Cells.Get(13, 0).Value = 6;
            this.fpSpread1_Sheet1.Cells.Get(13, 1).Value = "城市常住人口(万人)";
            this.fpSpread1_Sheet1.Cells.Get(14, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_Sheet1.Cells.Get(14, 0).ParseFormatInfo = ((System.Globalization.NumberFormatInfo)(cultureInfo.NumberFormat.Clone()));
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(14, 0).ParseFormatInfo)).NumberDecimalDigits = 0;
            ((System.Globalization.NumberFormatInfo)(this.fpSpread1_Sheet1.Cells.Get(14, 0).ParseFormatInfo)).NumberGroupSizes = new int[] {
        0};
            this.fpSpread1_Sheet1.Cells.Get(14, 0).ParseFormatString = "n";
            this.fpSpread1_Sheet1.Cells.Get(14, 0).Value = 7;
            this.fpSpread1_Sheet1.Cells.Get(14, 1).Value = "行政区区域面积(平方公里)";
            this.fpSpread1_Sheet1.ColumnHeader.AutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
            this.fpSpread1_Sheet1.Columns.Default.Width = 64F;
            this.fpSpread1_Sheet1.Columns.Get(0).Width = 176F;
            this.fpSpread1_Sheet1.Columns.Get(1).Width = 237F;
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet1.Rows.Get(0).Height = 30F;
            // 
            // fpSpread1_sheetView1
            // 
            this.fpSpread1_sheetView1.Reset();
            this.fpSpread1_sheetView1.SheetName = "输变电设备情况表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_sheetView1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_sheetView1.ColumnCount = 6;
            this.fpSpread1_sheetView1.RowCount = 6;
            this.fpSpread1_sheetView1.AutoUpdateNotes = true;
            this.fpSpread1_sheetView1.Cells.Get(0, 0).ColumnSpan = 6;
            this.fpSpread1_sheetView1.Cells.Get(0, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_sheetView1.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_sheetView1.Cells.Get(0, 0).Value = "本地区2009年底输变电设备情况表";
            this.fpSpread1_sheetView1.Cells.Get(1, 1).ColumnSpan = 6;
            this.fpSpread1_sheetView1.Cells.Get(1, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_sheetView1.Cells.Get(1, 1).Value = "单位:万千伏安、公里";
            this.fpSpread1_sheetView1.Cells.Get(2, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_sheetView1.Cells.Get(2, 0).Value = "名称";
            this.fpSpread1_sheetView1.Cells.Get(2, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_sheetView1.Cells.Get(2, 1).Value = "总容量";
            this.fpSpread1_sheetView1.Cells.Get(2, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_sheetView1.Cells.Get(2, 2).Value = "变电台数";
            this.fpSpread1_sheetView1.Cells.Get(2, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_sheetView1.Cells.Get(2, 3).Value = "导线型号";
            this.fpSpread1_sheetView1.Cells.Get(2, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_sheetView1.Cells.Get(2, 4).Value = "长度";
            this.fpSpread1_sheetView1.Cells.Get(2, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_sheetView1.Cells.Get(2, 5).Value = "备注";
            this.fpSpread1_sheetView1.Columns.Get(0).Width = 127F;
            this.fpSpread1_sheetView1.Columns.Get(1).Width = 90F;
            this.fpSpread1_sheetView1.Columns.Get(2).Width = 143F;
            this.fpSpread1_sheetView1.Columns.Get(3).Width = 217F;
            this.fpSpread1_sheetView1.RowHeader.Columns.Default.Resizable = false;
            // 
            // sheetView1
            // 
            this.sheetView1.Reset();
            this.sheetView1.SheetName = "无功补偿容量配置表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.sheetView1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.sheetView1.ColumnCount = 7;
            this.sheetView1.RowCount = 5;
            this.sheetView1.AutoUpdateNotes = true;
            this.sheetView1.Cells.Get(0, 0).ColumnSpan = 7;
            this.sheetView1.Cells.Get(0, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.sheetView1.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.sheetView1.Cells.Get(0, 0).Value = "附表3 本地区2009年底无功补偿容量配置表";
            this.sheetView1.Cells.Get(1, 0).ColumnSpan = 7;
            this.sheetView1.Cells.Get(1, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.sheetView1.Cells.Get(1, 0).Value = "单位:万千乏";
            this.sheetView1.Cells.Get(2, 1).Value = "安装地点";
            this.sheetView1.Cells.Get(2, 2).Value = "可投切并联电容器";
            this.sheetView1.Cells.Get(2, 3).Value = "高压电抗器";
            this.sheetView1.Cells.Get(2, 4).Value = "低压电抗器";
            this.sheetView1.Cells.Get(2, 5).Value = "静止补偿器";
            this.sheetView1.Cells.Get(2, 6).Value = "备注";
            this.sheetView1.Cells.Get(3, 0).ColumnSpan = 2;
            this.sheetView1.Cells.Get(3, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.sheetView1.Cells.Get(3, 0).Value = "全地区";
            this.sheetView1.Columns.Get(1).Width = 81F;
            this.sheetView1.Columns.Get(2).Width = 120F;
            this.sheetView1.Columns.Get(3).Width = 90F;
            this.sheetView1.Columns.Get(4).Width = 80F;
            this.sheetView1.Columns.Get(5).Width = 90F;
            this.sheetView1.Columns.Get(6).Width = 83F;
            this.sheetView1.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_sheetView2
            // 
            this.fpSpread1_sheetView2.Reset();
            this.fpSpread1_sheetView2.SheetName = "经济和电力发展实绩";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_sheetView2.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_sheetView2.ColumnCount = 2;
            this.fpSpread1_sheetView2.RowCount = 24;
            this.fpSpread1_sheetView2.AutoUpdateNotes = true;
            this.fpSpread1_sheetView2.Cells.Get(0, 0).ColumnSpan = 2;
            this.fpSpread1_sheetView2.Cells.Get(0, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.fpSpread1_sheetView2.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_sheetView2.Cells.Get(0, 0).Value = "本地区年经济和电力发展实绩";
            this.fpSpread1_sheetView2.Cells.Get(1, 0).ColumnSpan = 2;
            this.fpSpread1_sheetView2.Cells.Get(1, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.fpSpread1_sheetView2.Cells.Get(1, 0).Value = "单位:万元、小时、万千瓦时、万千瓦、万人、千瓦时/人";
            this.fpSpread1_sheetView2.Cells.Get(3, 0).Value = "GDP(不变价)";
            this.fpSpread1_sheetView2.Cells.Get(4, 0).Value = "   其中:一产";
            this.fpSpread1_sheetView2.Cells.Get(5, 0).Value = "         二产  ";
            this.fpSpread1_sheetView2.Cells.Get(6, 0).Value = "         三产 ";
            this.fpSpread1_sheetView2.Cells.Get(7, 0).Value = "全社会用电量";
            this.fpSpread1_sheetView2.Cells.Get(8, 0).Value = "   其中:一产";
            this.fpSpread1_sheetView2.Cells.Get(9, 0).Value = "         二产";
            this.fpSpread1_sheetView2.Cells.Get(10, 0).Value = "         三产";
            this.fpSpread1_sheetView2.Cells.Get(11, 0).Value = "         居民 ";
            this.fpSpread1_sheetView2.Cells.Get(12, 0).Value = "供电量";
            this.fpSpread1_sheetView2.Cells.Get(13, 0).Value = "区内小机组发电量";
            this.fpSpread1_sheetView2.Cells.Get(14, 0).Value = "最高供电负荷";
            this.fpSpread1_sheetView2.Cells.Get(15, 0).Value = "Tmax";
            this.fpSpread1_sheetView2.Cells.Get(16, 0).Value = "区内小机组容量";
            this.fpSpread1_sheetView2.Cells.Get(17, 0).Value = "    其中:水电 ";
            this.fpSpread1_sheetView2.Cells.Get(18, 0).Value = "          火电";
            this.fpSpread1_sheetView2.Cells.Get(19, 0).Value = "           热电 ";
            this.fpSpread1_sheetView2.Cells.Get(20, 0).Value = "人口";
            this.fpSpread1_sheetView2.Cells.Get(21, 0).Value = "人均用电量";
            this.fpSpread1_sheetView2.Cells.Get(22, 0).Value = "人均生活用电量";
            this.fpSpread1_sheetView2.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.fpSpread1_sheetView2.Columns.Get(0).Width = 211F;
            this.fpSpread1_sheetView2.Columns.Get(1).Width = 179F;
            this.fpSpread1_sheetView2.RowHeader.Columns.Default.Resizable = false;
            // 
            // sheetView2
            // 
            this.sheetView2.Reset();
            this.sheetView2.SheetName = "本地区分区县供用电实绩";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.sheetView2.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.sheetView2.ColumnCount = 2;
            this.sheetView2.RowCount = 4;
            this.sheetView2.AutoUpdateNotes = true;
            this.sheetView2.Cells.Get(0, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.sheetView2.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.sheetView2.Cells.Get(0, 0).Value = "本地区分区县供用电实绩";
            this.sheetView2.Cells.Get(1, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Right;
            this.sheetView2.Cells.Get(1, 0).Value = "单位:万千瓦、万千瓦时";
            this.sheetView2.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            this.sheetView2.Columns.Get(0).Width = 203F;
            this.sheetView2.Columns.Get(1).Width = 135F;
            this.sheetView2.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_Sheet2
            // 
            this.fpSpread1_Sheet2.Reset();
            this.fpSpread1_Sheet2.SheetName = "夏季和冬季典型日负荷曲线表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet2.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet2.ColumnCount = 0;
            this.fpSpread1_Sheet2.RowCount = 0;
            this.fpSpread1_Sheet2.AutoUpdateNotes = true;
            this.fpSpread1_Sheet2.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_sheetView3
            // 
            this.fpSpread1_sheetView3.Reset();
            this.fpSpread1_sheetView3.SheetName = "典型月负荷曲线表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_sheetView3.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_sheetView3.ColumnCount = 0;
            this.fpSpread1_sheetView3.RowCount = 0;
            this.fpSpread1_sheetView3.AutoUpdateNotes = true;
            this.fpSpread1_sheetView3.RowHeader.Columns.Default.Resizable = false;
            // 
            // sheetView3
            // 
            this.sheetView3.Reset();
            this.sheetView3.SheetName = "经济结构发展预测结果表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.sheetView3.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.sheetView3.ColumnCount = 0;
            this.sheetView3.RowCount = 0;
            this.sheetView3.AutoUpdateNotes = true;
            this.sheetView3.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_sheetView4
            // 
            this.fpSpread1_sheetView4.Reset();
            this.fpSpread1_sheetView4.SheetName = "本地区2010~2020年需电量预测表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_sheetView4.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_sheetView4.ColumnCount = 0;
            this.fpSpread1_sheetView4.RowCount = 0;
            this.fpSpread1_sheetView4.AutoUpdateNotes = true;
            this.fpSpread1_sheetView4.RowHeader.Columns.Default.Resizable = false;
            // 
            // sheetView4
            // 
            this.sheetView4.Reset();
            this.sheetView4.SheetName = "本地区2010~2020年最大负荷预测表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.sheetView4.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.sheetView4.ColumnCount = 0;
            this.sheetView4.RowCount = 0;
            this.sheetView4.AutoUpdateNotes = true;
            this.sheetView4.DefaultStyle.Border = bevelBorder6;
            this.sheetView4.DefaultStyle.Locked = false;
            this.sheetView4.DefaultStyle.Parent = "DataAreaDefault";
            this.sheetView4.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_sheetView5
            // 
            this.fpSpread1_sheetView5.Reset();
            this.fpSpread1_sheetView5.SheetName = "电力平衡表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_sheetView5.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_sheetView5.ColumnCount = 0;
            this.fpSpread1_sheetView5.RowCount = 0;
            this.fpSpread1_sheetView5.AutoUpdateNotes = true;
            this.fpSpread1_sheetView5.RowHeader.Columns.Default.Resizable = true;
            // 
            // sheetView5
            // 
            this.sheetView5.Reset();
            this.sheetView5.SheetName = "500kV变电容量平衡表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.sheetView5.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.sheetView5.ColumnCount = 0;
            this.sheetView5.RowCount = 0;
            this.sheetView5.AutoUpdateNotes = true;
            this.sheetView5.RowHeader.Columns.Default.Resizable = true;
            // 
            // fpSpread1_Sheet3
            // 
            this.fpSpread1_Sheet3.Reset();
            this.fpSpread1_Sheet3.SheetName = "220kV变电容量平衡表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet3.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet3.ColumnCount = 0;
            this.fpSpread1_Sheet3.RowCount = 0;
            this.fpSpread1_Sheet3.AutoUpdateNotes = true;
            this.fpSpread1_Sheet3.RowHeader.Columns.Default.Resizable = true;
            // 
            // fpSpread1_Sheet4
            // 
            this.fpSpread1_Sheet4.Reset();
            this.fpSpread1_Sheet4.SheetName = "110kV变电容量平衡表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet4.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet4.ColumnCount = 0;
            this.fpSpread1_Sheet4.RowCount = 0;
            this.fpSpread1_Sheet4.AutoUpdateNotes = true;
            this.fpSpread1_Sheet4.RowHeader.Columns.Default.Resizable = false;
            // 
            // fpSpread1_sheetView6
            // 
            this.fpSpread1_sheetView6.Reset();
            this.fpSpread1_sheetView6.SheetName = "无功平衡表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_sheetView6.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_sheetView6.ColumnCount = 0;
            this.fpSpread1_sheetView6.RowCount = 0;
            this.fpSpread1_sheetView6.AutoUpdateNotes = true;
            this.fpSpread1_sheetView6.RowHeader.Columns.Default.Resizable = true;
            // 
            // sheetView6
            // 
            this.sheetView6.Reset();
            this.sheetView6.SheetName = "“十二五”规划输变电建设项目明细表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.sheetView6.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.sheetView6.ColumnCount = 0;
            this.sheetView6.RowCount = 0;
            this.sheetView6.AutoUpdateNotes = true;
            this.sheetView6.RowHeader.Columns.Default.Resizable = true;
            // 
            // fpSpread1_sheetView7
            // 
            this.fpSpread1_sheetView7.Reset();
            this.fpSpread1_sheetView7.SheetName = "“十二五”电网输变电项目资金需求表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_sheetView7.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_sheetView7.ColumnCount = 0;
            this.fpSpread1_sheetView7.RowCount = 0;
            this.fpSpread1_sheetView7.AutoUpdateNotes = true;
            this.fpSpread1_sheetView7.RowHeader.Columns.Default.Resizable = true;
            // 
            // sheetView7
            // 
            this.sheetView7.Reset();
            this.sheetView7.SheetName = "“十二五”电网建设项目资金需求汇总表";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.sheetView7.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.sheetView7.ColumnCount = 0;
            this.sheetView7.RowCount = 0;
            this.sheetView7.AutoUpdateNotes = true;
            this.sheetView7.RowHeader.Columns.Default.Resizable = true;
            // 
            // FormsrwGh
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(853, 414);
            this.Controls.Add(this.fpSpread1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "FormsrwGh";
            this.Text = "FormsrwGh";
            this.Load += new System.EventHandler(this.FormsrwGh_Load);
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_sheetView7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.sheetView7)).EndInit();
            this.ResumeLayout(false);

        }
示例#6
0
 /// <summary>
 /// 디자이너 지원에 필요한 메서드입니다.
 /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer1 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer1    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer2 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer2    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer4 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer4    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer5 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer5    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer3 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer3    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer7 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer7    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer8 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer8    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer6 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer6    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer9 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer9    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     SoftwareFX.ChartFX.TitleDockable titleDockable2 = new SoftwareFX.ChartFX.TitleDockable();
     FarPoint.Win.Spread.NamedStyle   namedStyle4    = new FarPoint.Win.Spread.NamedStyle("ColumnHeaderSandstorm");
     FarPoint.Win.Spread.NamedStyle   namedStyle5    = new FarPoint.Win.Spread.NamedStyle("RowHeaderSandstorm");
     FarPoint.Win.Spread.NamedStyle   namedStyle6    = new FarPoint.Win.Spread.NamedStyle("CornerSandstorm");
     FarPoint.Win.Spread.CellType.EnhancedCornerRenderer enhancedCornerRenderer2 = new FarPoint.Win.Spread.CellType.EnhancedCornerRenderer();
     System.ComponentModel.ComponentResourceManager      resources = new System.ComponentModel.ComponentResourceManager(typeof(PRD010308));
     this.splitContainer1  = new System.Windows.Forms.SplitContainer();
     this.udcChartFX1      = new Miracom.SmartWeb.UI.Controls.udcChartFX(this.components);
     this.spdData          = new Miracom.SmartWeb.UI.Controls.udcFarPoint(this.components);
     this.spdData_Sheet1   = new FarPoint.Win.Spread.SheetView();
     this.cdvDate          = new Miracom.SmartWeb.UI.Controls.udcDateTimePicker(this.components);
     this.cdvFactory       = new Miracom.SmartWeb.UI.Controls.udcCUSCondition();
     this.cdvFromOper      = new Miracom.SmartWeb.UI.Controls.udcCUSCondition();
     this.lblIcon          = new System.Windows.Forms.Label();
     this.label1           = new System.Windows.Forms.Label();
     this.label4           = new System.Windows.Forms.Label();
     this.lblHoldDate      = new System.Windows.Forms.Label();
     this.txtHoldDate      = new System.Windows.Forms.TextBox();
     this.chkKpcs          = new System.Windows.Forms.CheckBox();
     this.label3           = new System.Windows.Forms.Label();
     this.lblProduct       = new System.Windows.Forms.Label();
     this.txtSearchProduct = new System.Windows.Forms.TextBox();
     this.cmbProduct       = new System.Windows.Forms.ComboBox();
     this.label2           = new System.Windows.Forms.Label();
     this.label5           = new System.Windows.Forms.Label();
     this.pnlMiddle.SuspendLayout();
     this.pnlCondition2.SuspendLayout();
     this.pnlCondition1.SuspendLayout();
     this.pnlWIPDetail.SuspendLayout();
     this.pnlDetailCondition2.SuspendLayout();
     this.pnlDetailCondition1.SuspendLayout();
     this.pnlMain.SuspendLayout();
     this.pnlRASDetail.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel4.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spdData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spdData_Sheet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // lblTitle
     //
     this.lblTitle.Size = new System.Drawing.Size(101, 13);
     this.lblTitle.Text = "Stagnant work TREND";
     //
     // pnlMiddle
     //
     this.pnlMiddle.Size = new System.Drawing.Size(800, 66);
     //
     // pnlCondition2
     //
     this.pnlCondition2.Controls.Add(this.cdvFromOper);
     this.pnlCondition2.Controls.Add(this.label2);
     this.pnlCondition2.Controls.Add(this.label5);
     this.pnlCondition2.Controls.Add(this.cmbProduct);
     this.pnlCondition2.Controls.Add(this.label3);
     this.pnlCondition2.Controls.Add(this.lblProduct);
     this.pnlCondition2.Controls.Add(this.txtSearchProduct);
     //
     // pnlCondition1
     //
     this.pnlCondition1.Controls.Add(this.label4);
     this.pnlCondition1.Controls.Add(this.chkKpcs);
     this.pnlCondition1.Controls.Add(this.lblHoldDate);
     this.pnlCondition1.Controls.Add(this.txtHoldDate);
     this.pnlCondition1.Controls.Add(this.label1);
     this.pnlCondition1.Controls.Add(this.lblIcon);
     this.pnlCondition1.Controls.Add(this.cdvFactory);
     this.pnlCondition1.Controls.Add(this.cdvDate);
     //
     // pnlWIPDetail
     //
     this.pnlWIPDetail.Location = new System.Drawing.Point(0, 152);
     //
     // pnlMain
     //
     this.pnlMain.Controls.Add(this.splitContainer1);
     this.pnlMain.Location = new System.Drawing.Point(0, 92);
     this.pnlMain.Size     = new System.Drawing.Size(800, 508);
     //
     // btnDetail
     //
     this.btnDetail.Enabled = false;
     this.btnDetail.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     this.btnDetail.Visible = false;
     //
     // btnView
     //
     this.btnView.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     this.btnView.Click += new System.EventHandler(this.btnView_Click);
     //
     // btnExcelExport
     //
     this.btnExcelExport.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     //
     // btnClose
     //
     this.btnClose.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     //
     // btnSort
     //
     this.btnSort.Enabled = false;
     this.btnSort.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     this.btnSort.Visible = false;
     //
     // pnlRASDetail
     //
     this.pnlRASDetail.Location = new System.Drawing.Point(0, 92);
     enhancedColumnHeaderRenderer1.ActiveBackgroundColor = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer1.Name = "enhancedColumnHeaderRenderer1";
     enhancedColumnHeaderRenderer1.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer1.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer1.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer1.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer1.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer1.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer1.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer1.Name = "enhancedRowHeaderRenderer1";
     enhancedRowHeaderRenderer1.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer1.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer1.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer1.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer1.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer1.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer2.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer2.Name = "enhancedColumnHeaderRenderer2";
     enhancedColumnHeaderRenderer2.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer2.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer2.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer2.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer2.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer2.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer2.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer2.Name = "enhancedRowHeaderRenderer2";
     enhancedRowHeaderRenderer2.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer2.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer2.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer2.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer2.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer2.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer4.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer4.Name = "enhancedColumnHeaderRenderer4";
     enhancedColumnHeaderRenderer4.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer4.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer4.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer4.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer4.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer4.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer4.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer4.Name = "enhancedRowHeaderRenderer4";
     enhancedRowHeaderRenderer4.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer4.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer4.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer4.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer4.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer4.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer5.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer5.Name = "enhancedColumnHeaderRenderer5";
     enhancedColumnHeaderRenderer5.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer5.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer5.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer5.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer5.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer5.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer5.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer5.Name = "enhancedRowHeaderRenderer5";
     enhancedRowHeaderRenderer5.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer5.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer5.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer5.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer5.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer5.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer3.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer3.Name = "enhancedColumnHeaderRenderer3";
     enhancedColumnHeaderRenderer3.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer3.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer3.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer3.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer3.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer3.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer3.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer3.Name = "enhancedRowHeaderRenderer3";
     enhancedRowHeaderRenderer3.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer3.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer3.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer3.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer3.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer3.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer7.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer7.Name = "enhancedColumnHeaderRenderer7";
     enhancedColumnHeaderRenderer7.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer7.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer7.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer7.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer7.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer7.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer7.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer7.Name = "enhancedRowHeaderRenderer7";
     enhancedRowHeaderRenderer7.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer7.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer7.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer7.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer7.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer7.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer8.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer8.Name = "enhancedColumnHeaderRenderer8";
     enhancedColumnHeaderRenderer8.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer8.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer8.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer8.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer8.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer8.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer8.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer8.Name = "enhancedRowHeaderRenderer8";
     enhancedRowHeaderRenderer8.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer8.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer8.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer8.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer8.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer8.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer6.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer6.Name = "enhancedColumnHeaderRenderer6";
     enhancedColumnHeaderRenderer6.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer6.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer6.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer6.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer6.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer6.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer6.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer6.Name = "enhancedRowHeaderRenderer6";
     enhancedRowHeaderRenderer6.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer6.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer6.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer6.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer6.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer6.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer9.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer9.Name = "enhancedColumnHeaderRenderer9";
     enhancedColumnHeaderRenderer9.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer9.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer9.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer9.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer9.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer9.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer9.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer9.Name = "enhancedRowHeaderRenderer9";
     enhancedRowHeaderRenderer9.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer9.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer9.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer9.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer9.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer9.TextRotationAngle             = 0;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(3, 3);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.udcChartFX1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.spdData);
     this.splitContainer1.Size             = new System.Drawing.Size(794, 505);
     this.splitContainer1.SplitterDistance = 293;
     this.splitContainer1.TabIndex         = 0;
     //
     // udcChartFX1
     //
     this.udcChartFX1.AxisX.Staggered = true;
     this.udcChartFX1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.udcChartFX1.Location        = new System.Drawing.Point(0, 0);
     this.udcChartFX1.Name            = "udcChartFX1";
     this.udcChartFX1.Scrollable      = true;
     this.udcChartFX1.Size            = new System.Drawing.Size(794, 293);
     this.udcChartFX1.TabIndex        = 27;
     this.udcChartFX1.Titles.AddRange(new SoftwareFX.ChartFX.TitleDockable[] {
         titleDockable2
     });
     this.udcChartFX1.ToolBar = true;
     //
     // spdData
     //
     this.spdData.About = "4.0.2001.2005";
     this.spdData.AccessibleDescription = "spdData, Sheet1, Row 0, Column 0, ";
     this.spdData.BackColor             = System.Drawing.Color.White;
     this.spdData.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.spdData.Location           = new System.Drawing.Point(0, 0);
     this.spdData.Name               = "spdData";
     namedStyle4.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle4.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle4.Renderer            = enhancedColumnHeaderRenderer9;
     namedStyle4.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle5.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle5.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle5.Renderer            = enhancedRowHeaderRenderer9;
     namedStyle5.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle6.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle6.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     enhancedCornerRenderer2.ActiveBackgroundColor = System.Drawing.Color.Goldenrod;
     enhancedCornerRenderer2.GridLineColor         = System.Drawing.Color.Tan;
     enhancedCornerRenderer2.NormalBackgroundColor = System.Drawing.Color.BurlyWood;
     namedStyle6.Renderer          = enhancedCornerRenderer2;
     namedStyle6.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.spdData.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] {
         namedStyle4,
         namedStyle5,
         namedStyle6
     });
     this.spdData.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.spdData.RPT_IsPreCellsType = true;
     this.spdData.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.spdData_Sheet1
     });
     this.spdData.Size       = new System.Drawing.Size(794, 208);
     this.spdData.TabIndex   = 2;
     this.spdData.CellClick += new FarPoint.Win.Spread.CellClickEventHandler(this.spdData_CellClick);
     //
     // spdData_Sheet1
     //
     this.spdData_Sheet1.Reset();
     this.spdData_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.spdData_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.spdData_Sheet1.ColumnCount    = 0;
     this.spdData_Sheet1.RowCount       = 0;
     this.spdData_Sheet1.RowHeader.Columns.Default.Resizable = false;
     this.spdData_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     this.spdData.SetActiveViewport(0, 1, 1);
     //
     // cdvDate
     //
     this.cdvDate.CustomFormat = "yyyy-MM-dd";
     this.cdvDate.Font         = new System.Drawing.Font("Verdana", 8F);
     this.cdvDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.cdvDate.Location     = new System.Drawing.Point(281, 2);
     this.cdvDate.Name         = "cdvDate";
     this.cdvDate.Size         = new System.Drawing.Size(100, 20);
     this.cdvDate.TabIndex     = 0;
     this.cdvDate.Type         = Miracom.SmartWeb.UI.Controls.DataTimePickerType.General;
     this.cdvDate.Value        = new System.DateTime(2010, 8, 4, 0, 0, 0, 0);
     //
     // cdvFactory
     //
     this.cdvFactory.BackColor          = System.Drawing.Color.Transparent;
     this.cdvFactory.bMultiSelect       = false;
     this.cdvFactory.ConditionText      = "Factory";
     this.cdvFactory.CondtionType       = Miracom.SmartWeb.UI.Controls.udcCondition.eConditionype.FACTORY;
     this.cdvFactory.ControlRef         = true;
     this.cdvFactory.Font               = new System.Drawing.Font("Tahoma", 8.25F);
     this.cdvFactory.ForcInitControl1   = this.cdvFromOper;
     this.cdvFactory.Location           = new System.Drawing.Point(12, 1);
     this.cdvFactory.MandatoryFlag      = true;
     this.cdvFactory.Name               = "cdvFactory";
     this.cdvFactory.ParentValue        = "";
     this.cdvFactory.sCodeColumnName    = "";
     this.cdvFactory.sDynamicQuery      = "";
     this.cdvFactory.Size               = new System.Drawing.Size(180, 21);
     this.cdvFactory.sTableName         = "";
     this.cdvFactory.sValueColumnName   = "";
     this.cdvFactory.TabIndex           = 11;
     this.cdvFactory.VisibleValueButton = true;
     //
     // cdvFromOper
     //
     this.cdvFromOper.BackColor          = System.Drawing.Color.Transparent;
     this.cdvFromOper.bMultiSelect       = true;
     this.cdvFromOper.ConditionText      = "Operation";
     this.cdvFromOper.CondtionType       = Miracom.SmartWeb.UI.Controls.udcCondition.eConditionype.TABLE;
     this.cdvFromOper.ControlRef         = true;
     this.cdvFromOper.Font               = new System.Drawing.Font("Tahoma", 8.25F);
     this.cdvFromOper.Location           = new System.Drawing.Point(12, 2);
     this.cdvFromOper.MandatoryFlag      = true;
     this.cdvFromOper.Name               = "cdvFromOper";
     this.cdvFromOper.ParentValue        = "";
     this.cdvFromOper.sCodeColumnName    = "Code";
     this.cdvFromOper.sDynamicQuery      = "";
     this.cdvFromOper.Size               = new System.Drawing.Size(180, 21);
     this.cdvFromOper.sTableName         = "";
     this.cdvFromOper.sValueColumnName   = "Data";
     this.cdvFromOper.TabIndex           = 85;
     this.cdvFromOper.VisibleValueButton = true;
     this.cdvFromOper.ValueButtonPress  += new System.EventHandler(this.cdvFromOper_ValueButtonPress);
     //
     // lblIcon
     //
     this.lblIcon.BackColor  = System.Drawing.Color.White;
     this.lblIcon.Image      = ((System.Drawing.Image)(resources.GetObject("lblIcon.Image")));
     this.lblIcon.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.lblIcon.Location   = new System.Drawing.Point(203, 4);
     this.lblIcon.Name       = "lblIcon";
     this.lblIcon.Size       = new System.Drawing.Size(6, 17);
     this.lblIcon.TabIndex   = 12;
     this.lblIcon.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(212, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(55, 13);
     this.label1.TabIndex = 23;
     this.label1.Text     = "standard date";
     //
     // label4
     //
     this.label4.Image      = ((System.Drawing.Image)(resources.GetObject("label4.Image")));
     this.label4.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label4.Location   = new System.Drawing.Point(392, 6);
     this.label4.Name       = "label4";
     this.label4.Size       = new System.Drawing.Size(6, 17);
     this.label4.TabIndex   = 55;
     this.label4.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblHoldDate
     //
     this.lblHoldDate.AutoSize = true;
     this.lblHoldDate.Location = new System.Drawing.Point(401, 7);
     this.lblHoldDate.Name     = "lblHoldDate";
     this.lblHoldDate.Size     = new System.Drawing.Size(43, 13);
     this.lblHoldDate.TabIndex = 54;
     this.lblHoldDate.Text     = "Stagnant days";
     //
     // txtHoldDate
     //
     this.txtHoldDate.Location = new System.Drawing.Point(468, 2);
     this.txtHoldDate.Name     = "txtHoldDate";
     this.txtHoldDate.Size     = new System.Drawing.Size(100, 21);
     this.txtHoldDate.TabIndex = 53;
     this.txtHoldDate.Text     = "2";
     //
     // chkKpcs
     //
     this.chkKpcs.AutoSize = true;
     this.chkKpcs.Location = new System.Drawing.Point(574, 3);
     this.chkKpcs.Name     = "chkKpcs";
     this.chkKpcs.Size     = new System.Drawing.Size(51, 17);
     this.chkKpcs.TabIndex = 57;
     this.chkKpcs.Text     = "KPCS";
     this.chkKpcs.UseVisualStyleBackColor = true;
     //
     // label3
     //
     this.label3.Image      = ((System.Drawing.Image)(resources.GetObject("label3.Image")));
     this.label3.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label3.Location   = new System.Drawing.Point(203, 6);
     this.label3.Name       = "label3";
     this.label3.Size       = new System.Drawing.Size(6, 17);
     this.label3.TabIndex   = 56;
     this.label3.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblProduct
     //
     this.lblProduct.AutoSize = true;
     this.lblProduct.Location = new System.Drawing.Point(213, 8);
     this.lblProduct.Name     = "lblProduct";
     this.lblProduct.Size     = new System.Drawing.Size(44, 13);
     this.lblProduct.TabIndex = 55;
     this.lblProduct.Text     = "Product";
     //
     // txtSearchProduct
     //
     this.txtSearchProduct.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtSearchProduct.Location        = new System.Drawing.Point(281, 3);
     this.txtSearchProduct.Name            = "txtSearchProduct";
     this.txtSearchProduct.Size            = new System.Drawing.Size(100, 21);
     this.txtSearchProduct.TabIndex        = 54;
     this.txtSearchProduct.Text            = "%";
     //
     // cmbProduct
     //
     this.cmbProduct.FormattingEnabled = true;
     this.cmbProduct.Items.AddRange(new object[] {
         "ALL",
         "P%",
         "E%"
     });
     this.cmbProduct.Location = new System.Drawing.Point(468, 3);
     this.cmbProduct.Name     = "cmbProduct";
     this.cmbProduct.Size     = new System.Drawing.Size(100, 21);
     this.cmbProduct.TabIndex = 58;
     this.cmbProduct.Text     = "ALL";
     //
     // label2
     //
     this.label2.Image      = ((System.Drawing.Image)(resources.GetObject("label2.Image")));
     this.label2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label2.Location   = new System.Drawing.Point(392, 4);
     this.label2.Name       = "label2";
     this.label2.Size       = new System.Drawing.Size(6, 17);
     this.label2.TabIndex   = 60;
     this.label2.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(402, 6);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(44, 13);
     this.label5.TabIndex = 59;
     this.label5.Text     = "Product";
     //
     // PRD010308
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BaseFormType        = Miracom.SmartWeb.UI.Controls.udcCUSReport002.eBaseFormType.NONE;
     this.ConditionCount      = 2;
     this.FormStyle.BackColor = System.Drawing.SystemColors.Control;
     this.FormStyle.FormName  = null;
     this.Name = "PRD010308";
     this.pnlMiddle.ResumeLayout(false);
     this.pnlCondition2.ResumeLayout(false);
     this.pnlCondition2.PerformLayout();
     this.pnlCondition1.ResumeLayout(false);
     this.pnlCondition1.PerformLayout();
     this.pnlWIPDetail.ResumeLayout(false);
     this.pnlDetailCondition2.ResumeLayout(false);
     this.pnlDetailCondition1.ResumeLayout(false);
     this.pnlMain.ResumeLayout(false);
     this.pnlRASDetail.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.spdData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spdData_Sheet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
示例#7
0
 /// <summary>
 /// 디자이너 지원에 필요한 메서드입니다.
 /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
 /// </summary>
 private void InitializeComponent()
 {
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer1 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer2 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer1    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle1 = new FarPoint.Win.Spread.NamedStyle("Style1");
     FarPoint.Win.Spread.NamedStyle namedStyle2 = new FarPoint.Win.Spread.NamedStyle("RowHeaderEnhanced");
     FarPoint.Win.Spread.NamedStyle namedStyle3 = new FarPoint.Win.Spread.NamedStyle("CornerEnhanced");
     FarPoint.Win.Spread.CellType.EnhancedCornerRenderer enhancedCornerRenderer1 = new FarPoint.Win.Spread.CellType.EnhancedCornerRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle4 = new FarPoint.Win.Spread.NamedStyle("DataAreaDefault");
     FarPoint.Win.Spread.CellType.GeneralCellType generalCellType1 = new FarPoint.Win.Spread.CellType.GeneralCellType();
     FarPoint.Win.Spread.SpreadSkin spreadSkin1 = new FarPoint.Win.Spread.SpreadSkin();
     FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer enhancedFocusIndicatorRenderer1 = new FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer();
     FarPoint.Win.Spread.EnhancedInterfaceRenderer      enhancedInterfaceRenderer1      = new FarPoint.Win.Spread.EnhancedInterfaceRenderer();
     FarPoint.Win.Spread.EnhancedScrollBarRenderer      enhancedScrollBarRenderer1      = new FarPoint.Win.Spread.EnhancedScrollBarRenderer();
     FarPoint.Win.Spread.CellType.DateTimeCellType      dateTimeCellType1 = new FarPoint.Win.Spread.CellType.DateTimeCellType();
     System.ComponentModel.ComponentResourceManager     resources         = new System.ComponentModel.ComponentResourceManager(typeof(frmOLEDB_IF));
     FarPoint.Win.Spread.CellType.TextCellType          textCellType1     = new FarPoint.Win.Spread.CellType.TextCellType();
     this.lblSvrInfo   = new System.Windows.Forms.Label();
     this.lblFormTime  = new System.Windows.Forms.Label();
     this.lblSvrStatus = new System.Windows.Forms.Label();
     this.fpLog        = new FarPoint.Win.Spread.FpSpread();
     this.sheetView1   = new FarPoint.Win.Spread.SheetView();
     ((System.ComponentModel.ISupportInitialize)(this.fpLog)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sheetView1)).BeginInit();
     this.SuspendLayout();
     enhancedColumnHeaderRenderer1.BackColor         = System.Drawing.SystemColors.Control;
     enhancedColumnHeaderRenderer1.Font              = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     enhancedColumnHeaderRenderer1.ForeColor         = System.Drawing.SystemColors.ControlText;
     enhancedColumnHeaderRenderer1.Name              = "enhancedColumnHeaderRenderer1";
     enhancedColumnHeaderRenderer1.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     enhancedColumnHeaderRenderer1.TextRotationAngle = 0;
     enhancedColumnHeaderRenderer2.BackColor         = System.Drawing.SystemColors.Control;
     enhancedColumnHeaderRenderer2.Font              = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     enhancedColumnHeaderRenderer2.ForeColor         = System.Drawing.SystemColors.ControlText;
     enhancedColumnHeaderRenderer2.Name              = "enhancedColumnHeaderRenderer2";
     enhancedColumnHeaderRenderer2.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     enhancedColumnHeaderRenderer2.TextRotationAngle = 0;
     enhancedRowHeaderRenderer1.Name = "enhancedRowHeaderRenderer1";
     enhancedRowHeaderRenderer1.TextRotationAngle = 0;
     //
     // lblSvrInfo
     //
     this.lblSvrInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.lblSvrInfo.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.lblSvrInfo.Font      = new System.Drawing.Font("맑은 고딕", 15F, System.Drawing.FontStyle.Bold);
     this.lblSvrInfo.Location  = new System.Drawing.Point(0, 0);
     this.lblSvrInfo.Name      = "lblSvrInfo";
     this.lblSvrInfo.Size      = new System.Drawing.Size(549, 42);
     this.lblSvrInfo.TabIndex  = 1;
     this.lblSvrInfo.Text      = "서버 시작 대기중";
     this.lblSvrInfo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblFormTime
     //
     this.lblFormTime.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblFormTime.BackColor = System.Drawing.SystemColors.ControlText;
     this.lblFormTime.Font      = new System.Drawing.Font("굴림체", 11F);
     this.lblFormTime.ForeColor = System.Drawing.Color.White;
     this.lblFormTime.Location  = new System.Drawing.Point(549, 0);
     this.lblFormTime.Name      = "lblFormTime";
     this.lblFormTime.Size      = new System.Drawing.Size(218, 42);
     this.lblFormTime.TabIndex  = 2;
     this.lblFormTime.Text      = "시작: 2010-03-22 08:33:03\r\n종료: 2010-03-22 09:33:03";
     this.lblFormTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblSvrStatus
     //
     this.lblSvrStatus.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblSvrStatus.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.lblSvrStatus.Font      = new System.Drawing.Font("굴림체", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     this.lblSvrStatus.ForeColor = System.Drawing.Color.White;
     this.lblSvrStatus.Location  = new System.Drawing.Point(767, 0);
     this.lblSvrStatus.Name      = "lblSvrStatus";
     this.lblSvrStatus.Size      = new System.Drawing.Size(66, 42);
     this.lblSvrStatus.TabIndex  = 3;
     this.lblSvrStatus.Text      = "시작\r\n대기";
     this.lblSvrStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // fpLog
     //
     this.fpLog.AccessibleDescription = "fpLog, Sheet1, Row 0, Column 0, 10-03-22 11:41:29";
     this.fpLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Left)
                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.fpLog.BackColor = System.Drawing.SystemColors.Control;
     this.fpLog.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.fpLog.Location             = new System.Drawing.Point(0, 41);
     this.fpLog.Name                 = "fpLog";
     namedStyle1.Font                = new System.Drawing.Font("굴림체", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     namedStyle1.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle1.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle1.Locked              = false;
     namedStyle1.NoteIndicatorColor  = System.Drawing.Color.Red;
     namedStyle1.Renderer            = enhancedColumnHeaderRenderer2;
     namedStyle1.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle2.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(236)))), ((int)(((byte)(247)))));
     namedStyle2.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle2.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle2.NoteIndicatorColor  = System.Drawing.Color.Red;
     namedStyle2.Renderer            = enhancedRowHeaderRenderer1;
     namedStyle2.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle3.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(196)))), ((int)(((byte)(233)))));
     namedStyle3.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle3.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle3.NoteIndicatorColor  = System.Drawing.Color.Red;
     namedStyle3.Renderer            = enhancedCornerRenderer1;
     namedStyle3.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle4.BackColor           = System.Drawing.SystemColors.Window;
     namedStyle4.CellType            = generalCellType1;
     namedStyle4.ForeColor           = System.Drawing.SystemColors.WindowText;
     namedStyle4.NoteIndicatorColor  = System.Drawing.Color.Red;
     namedStyle4.Renderer            = generalCellType1;
     this.fpLog.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] {
         namedStyle1,
         namedStyle2,
         namedStyle3,
         namedStyle4
     });
     this.fpLog.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.fpLog.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.sheetView1
     });
     this.fpLog.Size = new System.Drawing.Size(833, 501);
     spreadSkin1.ColumnHeaderDefaultStyle                = namedStyle1;
     spreadSkin1.CornerDefaultStyle                      = namedStyle3;
     spreadSkin1.DefaultStyle                            = namedStyle4;
     spreadSkin1.FocusRenderer                           = enhancedFocusIndicatorRenderer1;
     enhancedInterfaceRenderer1.GrayAreaColor            = System.Drawing.SystemColors.ControlLight;
     enhancedInterfaceRenderer1.ScrollBoxBackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(161)))), ((int)(((byte)(186)))), ((int)(((byte)(221)))));
     enhancedInterfaceRenderer1.SheetTabLowerActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(210)))), ((int)(((byte)(244)))));
     enhancedInterfaceRenderer1.SheetTabLowerNormalColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(231)))), ((int)(((byte)(249)))));
     enhancedInterfaceRenderer1.SheetTabUpperActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(228)))), ((int)(((byte)(244)))));
     enhancedInterfaceRenderer1.SheetTabUpperNormalColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(229)))), ((int)(((byte)(249)))));
     enhancedInterfaceRenderer1.TabStripBackgroundColor  = System.Drawing.Color.FromArgb(((int)(((byte)(161)))), ((int)(((byte)(186)))), ((int)(((byte)(221)))));
     spreadSkin1.InterfaceRenderer                       = enhancedInterfaceRenderer1;
     spreadSkin1.Name = "CustomSkin2";
     spreadSkin1.RowHeaderDefaultStyle = namedStyle2;
     spreadSkin1.ScrollBarRenderer     = enhancedScrollBarRenderer1;
     spreadSkin1.SelectionRenderer     = new FarPoint.Win.Spread.GradientSelectionRenderer(System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(60)))), ((int)(((byte)(97))))), System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(110)))), ((int)(((byte)(170))))), System.Drawing.Drawing2D.LinearGradientMode.Vertical, 30);
     this.fpLog.Skin     = spreadSkin1;
     this.fpLog.TabIndex = 4;
     this.fpLog.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     //
     // sheetView1
     //
     this.sheetView1.Reset();
     this.sheetView1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.sheetView1.ReferenceStyle        = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.sheetView1.ColumnCount           = 4;
     this.sheetView1.RowCount              = 1;
     this.sheetView1.Cells.Get(0, 0).Value = new System.DateTime(2010, 3, 22, 11, 41, 29, 0);
     this.sheetView1.Cells.Get(0, 1).Value = "TEST";
     this.sheetView1.Cells.Get(0, 2).Value = "\r\n";
     this.sheetView1.ColumnHeader.Cells.Get(0, 0).Value           = "처리시간";
     this.sheetView1.ColumnHeader.Cells.Get(0, 1).Value           = "클라이언트이름";
     this.sheetView1.ColumnHeader.Cells.Get(0, 2).Value           = "Query";
     this.sheetView1.ColumnHeader.Cells.Get(0, 3).Value           = "비고";
     this.sheetView1.ColumnHeader.DefaultStyle.NoteIndicatorColor = System.Drawing.Color.Red;
     this.sheetView1.ColumnHeader.DefaultStyle.Parent             = "Style1";
     this.sheetView1.ColumnHeader.Rows.Get(0).Height = 21F;
     dateTimeCellType1.Calendar = ((System.Globalization.Calendar)(resources.GetObject("dateTimeCellType1.Calendar")));
     dateTimeCellType1.CalendarSurroundingDaysColor = System.Drawing.SystemColors.GrayText;
     dateTimeCellType1.DateDefault                      = new System.DateTime(2010, 3, 22, 11, 41, 29, 0);
     dateTimeCellType1.DateTimeFormat                   = FarPoint.Win.Spread.CellType.DateTimeFormat.UserDefined;
     dateTimeCellType1.MaximumTime                      = System.TimeSpan.Parse("23:59:59.9999999");
     dateTimeCellType1.TimeDefault                      = new System.DateTime(2010, 3, 22, 11, 41, 29, 0);
     dateTimeCellType1.UserDefinedFormat                = "yy-MM-dd hh:mm:ss";
     this.sheetView1.Columns.Get(0).CellType            = dateTimeCellType1;
     this.sheetView1.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.sheetView1.Columns.Get(0).Label               = "처리시간";
     this.sheetView1.Columns.Get(0).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.sheetView1.Columns.Get(0).Width               = 112F;
     this.sheetView1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.sheetView1.Columns.Get(1).Label               = "클라이언트이름";
     this.sheetView1.Columns.Get(1).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.sheetView1.Columns.Get(1).Width               = 117F;
     textCellType1.MaxLength = 9999;
     textCellType1.Multiline = true;
     this.sheetView1.Columns.Get(2).CellType            = textCellType1;
     this.sheetView1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
     this.sheetView1.Columns.Get(2).Label               = "Query";
     this.sheetView1.Columns.Get(2).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Top;
     this.sheetView1.Columns.Get(2).Width               = 382F;
     this.sheetView1.Columns.Get(3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.sheetView1.Columns.Get(3).Label               = "비고";
     this.sheetView1.Columns.Get(3).VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.sheetView1.Columns.Get(3).Width               = 183F;
     this.sheetView1.OperationMode = FarPoint.Win.Spread.OperationMode.RowMode;
     this.sheetView1.RowHeader.Columns.Default.Resizable = false;
     this.sheetView1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // frmOLEDB_IF
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(833, 566);
     this.Controls.Add(this.fpLog);
     this.Controls.Add(this.lblSvrStatus);
     this.Controls.Add(this.lblFormTime);
     this.Controls.Add(this.lblSvrInfo);
     this.Name = "frmOLEDB_IF";
     this.Text = "OLE DB I/F";
     this.Controls.SetChildIndex(this.lblSvrInfo, 0);
     this.Controls.SetChildIndex(this.lblFormTime, 0);
     this.Controls.SetChildIndex(this.lblSvrStatus, 0);
     this.Controls.SetChildIndex(this.fpLog, 0);
     ((System.ComponentModel.ISupportInitialize)(this.fpLog)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sheetView1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#8
0
 /// <summary>
 /// 디자이너 지원에 필요한 메서드입니다.
 /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer1 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer1    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer2 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer2    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer4 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer4    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer5 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer5    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer3 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer3    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer7 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer7    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer8 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer8    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer6 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer6    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.EnhancedScrollBarRenderer             enhancedScrollBarRenderer1    = new FarPoint.Win.Spread.EnhancedScrollBarRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle1 = new FarPoint.Win.Spread.NamedStyle("ColumnHeaderSandstorm");
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer9 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle2 = new FarPoint.Win.Spread.NamedStyle("RowHeaderSandstorm");
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer enhancedRowHeaderRenderer9 = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle3 = new FarPoint.Win.Spread.NamedStyle("CornerSandstorm");
     FarPoint.Win.Spread.CellType.EnhancedCornerRenderer       enhancedCornerRenderer1    = new FarPoint.Win.Spread.CellType.EnhancedCornerRenderer();
     FarPoint.Win.Spread.EnhancedScrollBarRenderer             enhancedScrollBarRenderer2 = new FarPoint.Win.Spread.EnhancedScrollBarRenderer();
     System.ComponentModel.ComponentResourceManager            resources  = new System.ComponentModel.ComponentResourceManager(typeof(TRN090401));
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.spdData         = new Miracom.SmartWeb.UI.Controls.udcFarPoint(this.components);
     this.spdData_Sheet1  = new FarPoint.Win.Spread.SheetView();
     this.cdvDate         = new Miracom.SmartWeb.UI.Controls.udcDateTimePicker(this.components);
     this.cdvCustom       = new Miracom.SmartWeb.UI.Controls.udcCUSCondition();
     this.cdvFactory      = new Miracom.SmartWeb.UI.Controls.udcCUSCondition();
     this.cdvPkg          = new Miracom.SmartWeb.UI.Controls.udcCUSCondition();
     this.lblIcon         = new System.Windows.Forms.Label();
     this.chkKpcs         = new System.Windows.Forms.CheckBox();
     this.label1          = new System.Windows.Forms.Label();
     this.udcMSChart1     = new Miracom.SmartWeb.UI.Controls.udcMSChart();
     this.pnlMiddle.SuspendLayout();
     this.pnlCondition2.SuspendLayout();
     this.pnlCondition1.SuspendLayout();
     this.pnlWIPDetail.SuspendLayout();
     this.pnlDetailCondition2.SuspendLayout();
     this.pnlDetailCondition1.SuspendLayout();
     this.pnlMain.SuspendLayout();
     this.pnlRASDetail.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel4.SuspendLayout();
     this.pnlDetailCondition3.SuspendLayout();
     this.pnlBUMPDetail.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel6.SuspendLayout();
     this.panel7.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spdData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spdData_Sheet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.udcMSChart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // pnlMiddle
     //
     this.pnlMiddle.Size = new System.Drawing.Size(800, 66);
     //
     // pnlCondition2
     //
     this.pnlCondition2.Controls.Add(this.cdvPkg);
     this.pnlCondition2.Controls.Add(this.cdvCustom);
     //
     // pnlCondition1
     //
     this.pnlCondition1.Controls.Add(this.label1);
     this.pnlCondition1.Controls.Add(this.chkKpcs);
     this.pnlCondition1.Controls.Add(this.lblIcon);
     this.pnlCondition1.Controls.Add(this.cdvFactory);
     this.pnlCondition1.Controls.Add(this.cdvDate);
     //
     // pnlWIPDetail
     //
     this.pnlWIPDetail.Location = new System.Drawing.Point(0, 152);
     //
     // pnlMain
     //
     this.pnlMain.Controls.Add(this.splitContainer1);
     this.pnlMain.Location = new System.Drawing.Point(0, 92);
     this.pnlMain.Size     = new System.Drawing.Size(800, 508);
     //
     // btnDetail
     //
     this.btnDetail.Enabled = false;
     this.btnDetail.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     //
     // btnView
     //
     this.btnView.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     this.btnView.Click += new System.EventHandler(this.btnView_Click);
     //
     // btnExcelExport
     //
     this.btnExcelExport.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     //
     // btnClose
     //
     this.btnClose.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     //
     // btnSort
     //
     this.btnSort.Enabled = false;
     this.btnSort.FlatAppearance.BorderColor = System.Drawing.Color.Gainsboro;
     //
     // pnlRASDetail
     //
     this.pnlRASDetail.Location = new System.Drawing.Point(0, 92);
     //
     // pnlBUMPDetail
     //
     this.pnlBUMPDetail.Location = new System.Drawing.Point(0, 239);
     enhancedColumnHeaderRenderer1.ActiveBackgroundColor = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer1.Name = "enhancedColumnHeaderRenderer1";
     enhancedColumnHeaderRenderer1.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer1.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer1.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer1.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer1.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer1.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer1.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer1.Name = "enhancedRowHeaderRenderer1";
     enhancedRowHeaderRenderer1.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer1.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer1.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer1.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer1.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer1.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer2.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer2.Name = "enhancedColumnHeaderRenderer2";
     enhancedColumnHeaderRenderer2.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer2.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer2.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer2.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer2.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer2.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer2.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer2.Name = "enhancedRowHeaderRenderer2";
     enhancedRowHeaderRenderer2.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer2.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer2.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer2.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer2.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer2.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer4.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer4.Name = "enhancedColumnHeaderRenderer4";
     enhancedColumnHeaderRenderer4.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer4.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer4.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer4.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer4.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer4.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer4.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer4.Name = "enhancedRowHeaderRenderer4";
     enhancedRowHeaderRenderer4.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer4.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer4.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer4.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer4.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer4.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer5.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer5.Name = "enhancedColumnHeaderRenderer5";
     enhancedColumnHeaderRenderer5.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer5.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer5.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer5.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer5.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer5.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer5.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer5.Name = "enhancedRowHeaderRenderer5";
     enhancedRowHeaderRenderer5.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer5.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer5.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer5.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer5.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer5.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer3.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer3.Name = "enhancedColumnHeaderRenderer3";
     enhancedColumnHeaderRenderer3.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer3.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer3.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer3.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer3.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer3.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer3.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer3.Name = "enhancedRowHeaderRenderer3";
     enhancedRowHeaderRenderer3.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer3.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer3.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer3.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer3.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer3.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer7.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer7.Name = "enhancedColumnHeaderRenderer7";
     enhancedColumnHeaderRenderer7.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer7.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer7.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer7.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer7.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer7.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer7.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer7.Name = "enhancedRowHeaderRenderer7";
     enhancedRowHeaderRenderer7.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer7.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer7.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer7.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer7.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer7.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer8.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer8.Name = "enhancedColumnHeaderRenderer8";
     enhancedColumnHeaderRenderer8.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer8.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer8.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer8.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer8.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer8.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer8.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer8.Name = "enhancedRowHeaderRenderer8";
     enhancedRowHeaderRenderer8.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer8.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer8.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer8.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer8.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer8.TextRotationAngle             = 0;
     enhancedColumnHeaderRenderer6.ActiveBackgroundColor      = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer6.Name = "enhancedColumnHeaderRenderer6";
     enhancedColumnHeaderRenderer6.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer6.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer6.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer6.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer6.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer6.TextRotationAngle             = 0;
     enhancedRowHeaderRenderer6.ActiveBackgroundColor            = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer6.Name = "enhancedRowHeaderRenderer6";
     enhancedRowHeaderRenderer6.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer6.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer6.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer6.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer6.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer6.TextRotationAngle             = 0;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(3, 3);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.udcMSChart1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.spdData);
     this.splitContainer1.Size             = new System.Drawing.Size(794, 505);
     this.splitContainer1.SplitterDistance = 294;
     this.splitContainer1.TabIndex         = 0;
     //
     // spdData
     //
     this.spdData.About = "4.0.2001.2005";
     this.spdData.AccessibleDescription = "spdData, Sheet1, Row 0, Column 0, ";
     this.spdData.BackColor             = System.Drawing.Color.White;
     this.spdData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.spdData.HorizontalScrollBar.Buttons                   = new FarPoint.Win.Spread.FpScrollBarButtonCollection("BackwardLineButton,ThumbTrack,ForwardLineButton");
     this.spdData.HorizontalScrollBar.Name                      = "";
     enhancedScrollBarRenderer1.ArrowColor                      = System.Drawing.Color.SaddleBrown;
     enhancedScrollBarRenderer1.ArrowHoveredColor               = System.Drawing.Color.SaddleBrown;
     enhancedScrollBarRenderer1.ArrowSelectedColor              = System.Drawing.Color.SaddleBrown;
     enhancedScrollBarRenderer1.ButtonBackgroundColor           = System.Drawing.Color.NavajoWhite;
     enhancedScrollBarRenderer1.ButtonBorderColor               = System.Drawing.Color.Tan;
     enhancedScrollBarRenderer1.ButtonHoveredBackgroundColor    = System.Drawing.Color.BurlyWood;
     enhancedScrollBarRenderer1.ButtonHoveredBorderColor        = System.Drawing.Color.Tan;
     enhancedScrollBarRenderer1.ButtonSelectedBackgroundColor   = System.Drawing.Color.Goldenrod;
     enhancedScrollBarRenderer1.ButtonSelectedBorderColor       = System.Drawing.Color.Tan;
     enhancedScrollBarRenderer1.TrackBarBackgroundColor         = System.Drawing.Color.BurlyWood;
     enhancedScrollBarRenderer1.TrackBarSelectedBackgroundColor = System.Drawing.Color.SandyBrown;
     this.spdData.HorizontalScrollBar.Renderer                  = enhancedScrollBarRenderer1;
     this.spdData.HorizontalScrollBar.TabIndex                  = 5;
     this.spdData.Location           = new System.Drawing.Point(0, 0);
     this.spdData.Name               = "spdData";
     namedStyle1.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle1.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     enhancedColumnHeaderRenderer9.ActiveBackgroundColor = System.Drawing.Color.Goldenrod;
     enhancedColumnHeaderRenderer9.Name = "";
     enhancedColumnHeaderRenderer9.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedColumnHeaderRenderer9.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer9.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer9.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedColumnHeaderRenderer9.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedColumnHeaderRenderer9.TextRotationAngle             = 0;
     namedStyle1.Renderer            = enhancedColumnHeaderRenderer9;
     namedStyle1.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle2.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle2.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     enhancedRowHeaderRenderer9.ActiveBackgroundColor = System.Drawing.Color.Goldenrod;
     enhancedRowHeaderRenderer9.Name = "";
     enhancedRowHeaderRenderer9.NormalBackgroundColor         = System.Drawing.Color.NavajoWhite;
     enhancedRowHeaderRenderer9.NormalGridLineColor           = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer9.SelectedActiveBackgroundColor = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer9.SelectedBackgroundColor       = System.Drawing.Color.Tan;
     enhancedRowHeaderRenderer9.SelectedGridLineColor         = System.Drawing.Color.BurlyWood;
     enhancedRowHeaderRenderer9.TextRotationAngle             = 0;
     namedStyle2.Renderer            = enhancedRowHeaderRenderer9;
     namedStyle2.VerticalAlignment   = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle3.ForeColor           = System.Drawing.SystemColors.ControlText;
     namedStyle3.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     enhancedCornerRenderer1.ActiveBackgroundColor = System.Drawing.Color.Goldenrod;
     enhancedCornerRenderer1.GridLineColor         = System.Drawing.Color.Tan;
     enhancedCornerRenderer1.NormalBackgroundColor = System.Drawing.Color.BurlyWood;
     namedStyle3.Renderer          = enhancedCornerRenderer1;
     namedStyle3.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.spdData.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] {
         namedStyle1,
         namedStyle2,
         namedStyle3
     });
     this.spdData.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.spdData.RPT_IsPreCellsType = true;
     this.spdData.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.spdData_Sheet1
     });
     this.spdData.Size     = new System.Drawing.Size(794, 207);
     this.spdData.Skin     = FarPoint.Win.Spread.DefaultSpreadSkins.Sandstorm;
     this.spdData.TabIndex = 2;
     this.spdData.VerticalScrollBar.Buttons                     = new FarPoint.Win.Spread.FpScrollBarButtonCollection("BackwardLineButton,ThumbTrack,ForwardLineButton");
     this.spdData.VerticalScrollBar.Name                        = "";
     enhancedScrollBarRenderer2.ArrowColor                      = System.Drawing.Color.SaddleBrown;
     enhancedScrollBarRenderer2.ArrowHoveredColor               = System.Drawing.Color.SaddleBrown;
     enhancedScrollBarRenderer2.ArrowSelectedColor              = System.Drawing.Color.SaddleBrown;
     enhancedScrollBarRenderer2.ButtonBackgroundColor           = System.Drawing.Color.NavajoWhite;
     enhancedScrollBarRenderer2.ButtonBorderColor               = System.Drawing.Color.Tan;
     enhancedScrollBarRenderer2.ButtonHoveredBackgroundColor    = System.Drawing.Color.BurlyWood;
     enhancedScrollBarRenderer2.ButtonHoveredBorderColor        = System.Drawing.Color.Tan;
     enhancedScrollBarRenderer2.ButtonSelectedBackgroundColor   = System.Drawing.Color.Goldenrod;
     enhancedScrollBarRenderer2.ButtonSelectedBorderColor       = System.Drawing.Color.Tan;
     enhancedScrollBarRenderer2.TrackBarBackgroundColor         = System.Drawing.Color.BurlyWood;
     enhancedScrollBarRenderer2.TrackBarSelectedBackgroundColor = System.Drawing.Color.SandyBrown;
     this.spdData.VerticalScrollBar.Renderer                    = enhancedScrollBarRenderer2;
     this.spdData.VerticalScrollBar.TabIndex                    = 6;
     //
     // spdData_Sheet1
     //
     this.spdData_Sheet1.Reset();
     this.spdData_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.spdData_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.spdData_Sheet1.ColumnCount    = 0;
     this.spdData_Sheet1.RowCount       = 0;
     this.spdData_Sheet1.ColumnHeader.DefaultStyle.Parent    = "ColumnHeaderSandstorm";
     this.spdData_Sheet1.RowHeader.Columns.Default.Resizable = false;
     this.spdData_Sheet1.RowHeader.DefaultStyle.Parent       = "RowHeaderSandstorm";
     this.spdData_Sheet1.SheetCornerStyle.Parent             = "CornerSandstorm";
     this.spdData_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     this.spdData.SetActiveViewport(0, 1, 1);
     //
     // cdvDate
     //
     this.cdvDate.CustomFormat = "yyyy-MM-dd";
     this.cdvDate.Font         = new System.Drawing.Font("Verdana", 8F);
     this.cdvDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.cdvDate.Location     = new System.Drawing.Point(281, 2);
     this.cdvDate.Name         = "cdvDate";
     this.cdvDate.Size         = new System.Drawing.Size(100, 20);
     this.cdvDate.TabIndex     = 0;
     this.cdvDate.Type         = Miracom.SmartWeb.UI.Controls.DataTimePickerType.General;
     this.cdvDate.Value        = new System.DateTime(2010, 8, 4, 0, 0, 0, 0);
     //
     // cdvCustom
     //
     this.cdvCustom.BackColor          = System.Drawing.Color.Transparent;
     this.cdvCustom.bMultiSelect       = false;
     this.cdvCustom.ConditionText      = "Custom";
     this.cdvCustom.CondtionType       = Miracom.SmartWeb.UI.Controls.udcCondition.eConditionype.WIP_TBL;
     this.cdvCustom.Font               = new System.Drawing.Font("Tahoma", 8.25F);
     this.cdvCustom.Location           = new System.Drawing.Point(12, 2);
     this.cdvCustom.MandatoryFlag      = false;
     this.cdvCustom.Name               = "cdvCustom";
     this.cdvCustom.ParentValue        = "";
     this.cdvCustom.RefFactory         = this.cdvFactory;
     this.cdvCustom.sCodeColumnName    = "";
     this.cdvCustom.sDynamicQuery      = "";
     this.cdvCustom.sFactory           = "";
     this.cdvCustom.Size               = new System.Drawing.Size(180, 21);
     this.cdvCustom.sTableName         = "CUSTOMER";
     this.cdvCustom.sValueColumnName   = "MAT_GRP_1";
     this.cdvCustom.TabIndex           = 1;
     this.cdvCustom.VisibleValueButton = true;
     //
     // cdvFactory
     //
     this.cdvFactory.BackColor          = System.Drawing.Color.Transparent;
     this.cdvFactory.bMultiSelect       = false;
     this.cdvFactory.ConditionText      = "Factory";
     this.cdvFactory.CondtionType       = Miracom.SmartWeb.UI.Controls.udcCondition.eConditionype.FACTORY;
     this.cdvFactory.ControlRef         = true;
     this.cdvFactory.Enabled            = false;
     this.cdvFactory.Font               = new System.Drawing.Font("Tahoma", 8.25F);
     this.cdvFactory.Location           = new System.Drawing.Point(12, 1);
     this.cdvFactory.MandatoryFlag      = true;
     this.cdvFactory.Name               = "cdvFactory";
     this.cdvFactory.ParentValue        = "";
     this.cdvFactory.sCodeColumnName    = "";
     this.cdvFactory.sDynamicQuery      = "";
     this.cdvFactory.Size               = new System.Drawing.Size(180, 21);
     this.cdvFactory.sTableName         = "";
     this.cdvFactory.sValueColumnName   = "";
     this.cdvFactory.TabIndex           = 11;
     this.cdvFactory.VisibleValueButton = true;
     //
     // cdvPkg
     //
     this.cdvPkg.BackColor          = System.Drawing.Color.Transparent;
     this.cdvPkg.bMultiSelect       = false;
     this.cdvPkg.ConditionText      = "Package";
     this.cdvPkg.CondtionType       = Miracom.SmartWeb.UI.Controls.udcCondition.eConditionype.WIP_TBL;
     this.cdvPkg.Font               = new System.Drawing.Font("Tahoma", 8.25F);
     this.cdvPkg.Location           = new System.Drawing.Point(200, 2);
     this.cdvPkg.MandatoryFlag      = false;
     this.cdvPkg.Name               = "cdvPkg";
     this.cdvPkg.ParentValue        = "";
     this.cdvPkg.RefControl1        = this.cdvCustom;
     this.cdvPkg.RefFactory         = this.cdvFactory;
     this.cdvPkg.sCodeColumnName    = "";
     this.cdvPkg.sDynamicQuery      = "";
     this.cdvPkg.sFactory           = "";
     this.cdvPkg.Size               = new System.Drawing.Size(180, 21);
     this.cdvPkg.sTableName         = "PACKAGE";
     this.cdvPkg.sValueColumnName   = "MAT_GRP_3";
     this.cdvPkg.TabIndex           = 12;
     this.cdvPkg.VisibleValueButton = true;
     //
     // lblIcon
     //
     this.lblIcon.BackColor  = System.Drawing.Color.White;
     this.lblIcon.Image      = ((System.Drawing.Image)(resources.GetObject("lblIcon.Image")));
     this.lblIcon.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.lblIcon.Location   = new System.Drawing.Point(203, 4);
     this.lblIcon.Name       = "lblIcon";
     this.lblIcon.Size       = new System.Drawing.Size(6, 17);
     this.lblIcon.TabIndex   = 12;
     this.lblIcon.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // chkKpcs
     //
     this.chkKpcs.AutoSize   = true;
     this.chkKpcs.Checked    = true;
     this.chkKpcs.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkKpcs.Location   = new System.Drawing.Point(418, 4);
     this.chkKpcs.Name       = "chkKpcs";
     this.chkKpcs.Size       = new System.Drawing.Size(47, 17);
     this.chkKpcs.TabIndex   = 22;
     this.chkKpcs.Text       = "kpcs";
     this.chkKpcs.UseVisualStyleBackColor = true;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(212, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(55, 13);
     this.label1.TabIndex = 23;
     this.label1.Text     = "standard date";
     //
     // udcMSChart1
     //
     chartArea1.Name = "ChartArea1";
     this.udcMSChart1.ChartAreas.Add(chartArea1);
     this.udcMSChart1.Dock = System.Windows.Forms.DockStyle.Fill;
     legend1.Name          = "Legend1";
     this.udcMSChart1.Legends.Add(legend1);
     this.udcMSChart1.Location = new System.Drawing.Point(0, 0);
     this.udcMSChart1.Name     = "udcMSChart1";
     series1.ChartArea         = "ChartArea1";
     series1.Legend            = "Legend1";
     series1.Name = "Series1";
     this.udcMSChart1.Series.Add(series1);
     this.udcMSChart1.Size     = new System.Drawing.Size(794, 294);
     this.udcMSChart1.TabIndex = 2;
     this.udcMSChart1.Text     = "udcMSChart1";
     //
     // TRN090401
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BaseFormType        = Miracom.SmartWeb.UI.Controls.udcCUSReport002.eBaseFormType.NONE;
     this.ConditionCount      = 2;
     this.FormStyle.BackColor = System.Drawing.SystemColors.Control;
     this.FormStyle.FormName  = null;
     this.Name = "TRN090401";
     this.pnlMiddle.ResumeLayout(false);
     this.pnlCondition2.ResumeLayout(false);
     this.pnlCondition1.ResumeLayout(false);
     this.pnlCondition1.PerformLayout();
     this.pnlWIPDetail.ResumeLayout(false);
     this.pnlDetailCondition2.ResumeLayout(false);
     this.pnlDetailCondition1.ResumeLayout(false);
     this.pnlMain.ResumeLayout(false);
     this.pnlRASDetail.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.pnlDetailCondition3.ResumeLayout(false);
     this.pnlBUMPDetail.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel6.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.spdData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spdData_Sheet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.udcMSChart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
示例#9
0
 /// <summary>
 /// 디자이너 지원에 필요한 메서드입니다.
 /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer enhancedColumnHeaderRenderer1 = new FarPoint.Win.Spread.CellType.EnhancedColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer    enhancedRowHeaderRenderer1    = new FarPoint.Win.Spread.CellType.EnhancedRowHeaderRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle1 = new FarPoint.Win.Spread.NamedStyle("Style1");
     FarPoint.Win.Spread.CellType.GeneralCellType generalCellType1 = new FarPoint.Win.Spread.CellType.GeneralCellType();
     FarPoint.Win.Spread.SpreadSkin spreadSkin1 = new FarPoint.Win.Spread.SpreadSkin();
     FarPoint.Win.Spread.NamedStyle namedStyle2 = new FarPoint.Win.Spread.NamedStyle("ColumnHeaderEnhanced");
     FarPoint.Win.Spread.NamedStyle namedStyle3 = new FarPoint.Win.Spread.NamedStyle("CornerEnhanced");
     FarPoint.Win.Spread.CellType.EnhancedCornerRenderer enhancedCornerRenderer1 = new FarPoint.Win.Spread.CellType.EnhancedCornerRenderer();
     System.ComponentModel.ComponentResourceManager      resources = new System.ComponentModel.ComponentResourceManager(typeof(PRD010221_P1));
     FarPoint.Win.Spread.EnhancedInterfaceRenderer       enhancedInterfaceRenderer1 = new FarPoint.Win.Spread.EnhancedInterfaceRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle4 = new FarPoint.Win.Spread.NamedStyle("RowHeaderEnhanced");
     FarPoint.Win.Spread.EnhancedScrollBarRenderer enhancedScrollBarRenderer1 = new FarPoint.Win.Spread.EnhancedScrollBarRenderer();
     this.splitContainer1        = new System.Windows.Forms.SplitContainer();
     this.spdDataOperInfo        = new Miracom.SmartWeb.UI.Controls.udcFarPoint(this.components);
     this.spdDataOperInfo_Sheet1 = new FarPoint.Win.Spread.SheetView();
     this.btnOk       = new System.Windows.Forms.Button();
     this.btnExcel    = new System.Windows.Forms.Button();
     this.txtLot      = new System.Windows.Forms.TextBox();
     this.txtPartNo   = new System.Windows.Forms.TextBox();
     this.grpbLotInfo = new System.Windows.Forms.GroupBox();
     this.lblLot      = new System.Windows.Forms.Label();
     this.lblPartNo   = new System.Windows.Forms.Label();
     this.lblQty      = new System.Windows.Forms.Label();
     this.lblPlace    = new System.Windows.Forms.Label();
     this.txtQty      = new System.Windows.Forms.TextBox();
     this.lblEngineer = new System.Windows.Forms.Label();
     this.lblProduct  = new System.Windows.Forms.Label();
     this.lblBusiness = new System.Windows.Forms.Label();
     this.lblNotice   = new System.Windows.Forms.Label();
     this.txtPlace    = new System.Windows.Forms.TextBox();
     this.txtEngineer = new System.Windows.Forms.TextBox();
     this.txtProduct  = new System.Windows.Forms.TextBox();
     this.txtBusiness = new System.Windows.Forms.TextBox();
     this.txtNotice   = new System.Windows.Forms.TextBox();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spdDataOperInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spdDataOperInfo_Sheet1)).BeginInit();
     this.grpbLotInfo.SuspendLayout();
     this.SuspendLayout();
     enhancedColumnHeaderRenderer1.Name = "enhancedColumnHeaderRenderer1";
     enhancedColumnHeaderRenderer1.TextRotationAngle = 0;
     enhancedRowHeaderRenderer1.Name = "enhancedRowHeaderRenderer1";
     enhancedRowHeaderRenderer1.TextRotationAngle = 0;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.grpbLotInfo);
     this.splitContainer1.Panel1.Controls.Add(this.spdDataOperInfo);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.btnOk);
     this.splitContainer1.Panel2.Controls.Add(this.btnExcel);
     this.splitContainer1.Size             = new System.Drawing.Size(943, 439);
     this.splitContainer1.SplitterDistance = 389;
     this.splitContainer1.TabIndex         = 2;
     //
     // spdDataOperInfo
     //
     this.spdDataOperInfo.About = "4.0.2001.2005";
     this.spdDataOperInfo.AccessibleDescription = "spdDataOperInfo, Sheet1, Row 0, Column 0, ";
     this.spdDataOperInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.spdDataOperInfo.Font     = new System.Drawing.Font("Tahoma", 8.25F);
     this.spdDataOperInfo.Location = new System.Drawing.Point(0, 113);
     this.spdDataOperInfo.Name     = "spdDataOperInfo";
     namedStyle1.BackColor         = System.Drawing.SystemColors.Window;
     namedStyle1.CellType          = generalCellType1;
     namedStyle1.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     namedStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     namedStyle1.Locked    = false;
     namedStyle1.Renderer  = generalCellType1;
     this.spdDataOperInfo.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] {
         namedStyle1
     });
     this.spdDataOperInfo.RPT_IsPreCellsType   = true;
     this.spdDataOperInfo.ScrollBarTrackPolicy = FarPoint.Win.Spread.ScrollBarTrackPolicy.Both;
     this.spdDataOperInfo.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.spdDataOperInfo_Sheet1
     });
     this.spdDataOperInfo.Size            = new System.Drawing.Size(940, 273);
     namedStyle2.ForeColor                = System.Drawing.SystemColors.ControlText;
     namedStyle2.HorizontalAlignment      = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle2.Renderer                 = enhancedColumnHeaderRenderer1;
     namedStyle2.VerticalAlignment        = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     spreadSkin1.ColumnHeaderDefaultStyle = namedStyle2;
     namedStyle3.ForeColor                = System.Drawing.SystemColors.ControlText;
     namedStyle3.HorizontalAlignment      = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle3.Renderer                 = enhancedCornerRenderer1;
     namedStyle3.VerticalAlignment        = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     spreadSkin1.CornerDefaultStyle       = namedStyle3;
     spreadSkin1.DefaultStyle             = namedStyle1;
     spreadSkin1.FocusRenderer            = ((FarPoint.Win.Spread.IFocusIndicatorRenderer)(resources.GetObject("spreadSkin1.FocusRenderer")));
     enhancedInterfaceRenderer1.ScrollBoxBackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(161)))), ((int)(((byte)(186)))), ((int)(((byte)(221)))));
     enhancedInterfaceRenderer1.SheetTabLowerActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(210)))), ((int)(((byte)(244)))));
     enhancedInterfaceRenderer1.SheetTabLowerNormalColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(231)))), ((int)(((byte)(249)))));
     enhancedInterfaceRenderer1.SheetTabUpperActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(228)))), ((int)(((byte)(244)))));
     enhancedInterfaceRenderer1.SheetTabUpperNormalColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(229)))), ((int)(((byte)(249)))));
     enhancedInterfaceRenderer1.TabStripBackgroundColor  = System.Drawing.Color.FromArgb(((int)(((byte)(161)))), ((int)(((byte)(186)))), ((int)(((byte)(221)))));
     spreadSkin1.InterfaceRenderer = enhancedInterfaceRenderer1;
     spreadSkin1.Name                  = "CustomSkin1";
     namedStyle4.ForeColor             = System.Drawing.SystemColors.ControlText;
     namedStyle4.HorizontalAlignment   = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle4.Renderer              = enhancedRowHeaderRenderer1;
     namedStyle4.VerticalAlignment     = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     spreadSkin1.RowHeaderDefaultStyle = namedStyle4;
     spreadSkin1.ScrollBarRenderer     = enhancedScrollBarRenderer1;
     spreadSkin1.SelectionRenderer     = new FarPoint.Win.Spread.DefaultSelectionRenderer();
     this.spdDataOperInfo.Skin         = spreadSkin1;
     this.spdDataOperInfo.TabIndex     = 2;
     //
     // spdDataOperInfo_Sheet1
     //
     this.spdDataOperInfo_Sheet1.Reset();
     this.spdDataOperInfo_Sheet1.SheetName = "Sheet1";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.spdDataOperInfo_Sheet1.ReferenceStyle      = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.spdDataOperInfo_Sheet1.DefaultStyle.Parent = "Style1";
     this.spdDataOperInfo_Sheet1.ReferenceStyle      = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     //
     // btnOk
     //
     this.btnOk.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOk.Location = new System.Drawing.Point(839, 3);
     this.btnOk.Name     = "btnOk";
     this.btnOk.Size     = new System.Drawing.Size(64, 25);
     this.btnOk.TabIndex = 0;
     this.btnOk.Text     = "Okay";
     this.btnOk.UseVisualStyleBackColor = true;
     this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
     //
     // btnExcel
     //
     this.btnExcel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExcel.Location = new System.Drawing.Point(770, 3);
     this.btnExcel.Name     = "btnExcel";
     this.btnExcel.Size     = new System.Drawing.Size(64, 25);
     this.btnExcel.TabIndex = 0;
     this.btnExcel.Text     = "Save";
     this.btnExcel.UseVisualStyleBackColor = true;
     this.btnExcel.Click += new System.EventHandler(this.btnExcel_Click);
     //
     // txtLot
     //
     this.txtLot.Location = new System.Drawing.Point(89, 18);
     this.txtLot.Name     = "txtLot";
     this.txtLot.ReadOnly = true;
     this.txtLot.Size     = new System.Drawing.Size(100, 21);
     this.txtLot.TabIndex = 3;
     //
     // txtPartNo
     //
     this.txtPartNo.Location = new System.Drawing.Point(255, 18);
     this.txtPartNo.Name     = "txtPartNo";
     this.txtPartNo.ReadOnly = true;
     this.txtPartNo.Size     = new System.Drawing.Size(267, 21);
     this.txtPartNo.TabIndex = 4;
     //
     // grpbLotInfo
     //
     this.grpbLotInfo.Controls.Add(this.txtNotice);
     this.grpbLotInfo.Controls.Add(this.txtBusiness);
     this.grpbLotInfo.Controls.Add(this.txtProduct);
     this.grpbLotInfo.Controls.Add(this.txtEngineer);
     this.grpbLotInfo.Controls.Add(this.txtPlace);
     this.grpbLotInfo.Controls.Add(this.lblNotice);
     this.grpbLotInfo.Controls.Add(this.lblBusiness);
     this.grpbLotInfo.Controls.Add(this.lblProduct);
     this.grpbLotInfo.Controls.Add(this.lblEngineer);
     this.grpbLotInfo.Controls.Add(this.txtQty);
     this.grpbLotInfo.Controls.Add(this.lblPlace);
     this.grpbLotInfo.Controls.Add(this.lblQty);
     this.grpbLotInfo.Controls.Add(this.lblPartNo);
     this.grpbLotInfo.Controls.Add(this.lblLot);
     this.grpbLotInfo.Controls.Add(this.txtPartNo);
     this.grpbLotInfo.Controls.Add(this.txtLot);
     this.grpbLotInfo.Location = new System.Drawing.Point(3, 3);
     this.grpbLotInfo.Name     = "grpbLotInfo";
     this.grpbLotInfo.Size     = new System.Drawing.Size(937, 104);
     this.grpbLotInfo.TabIndex = 5;
     this.grpbLotInfo.TabStop  = false;
     this.grpbLotInfo.Text     = "LOT INFO";
     //
     // lblLot
     //
     this.lblLot.AutoSize  = true;
     this.lblLot.Location  = new System.Drawing.Point(57, 21);
     this.lblLot.Name      = "lblLot";
     this.lblLot.Size      = new System.Drawing.Size(26, 13);
     this.lblLot.TabIndex  = 5;
     this.lblLot.Text      = "LOT";
     this.lblLot.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblPartNo
     //
     this.lblPartNo.AutoSize  = true;
     this.lblPartNo.Location  = new System.Drawing.Point(195, 21);
     this.lblPartNo.Name      = "lblPartNo";
     this.lblPartNo.Size      = new System.Drawing.Size(54, 13);
     this.lblPartNo.TabIndex  = 6;
     this.lblPartNo.Text      = "PART_NO";
     this.lblPartNo.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblQty
     //
     this.lblQty.AutoSize  = true;
     this.lblQty.Location  = new System.Drawing.Point(556, 21);
     this.lblQty.Name      = "lblQty";
     this.lblQty.Size      = new System.Drawing.Size(27, 13);
     this.lblQty.TabIndex  = 7;
     this.lblQty.Text      = "QTY";
     this.lblQty.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblPlace
     //
     this.lblPlace.AutoSize  = true;
     this.lblPlace.Location  = new System.Drawing.Point(40, 48);
     this.lblPlace.Name      = "lblPlace";
     this.lblPlace.Size      = new System.Drawing.Size(43, 13);
     this.lblPlace.TabIndex  = 8;
     this.lblPlace.Text      = "the place of shipment";
     this.lblPlace.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtQty
     //
     this.txtQty.Location  = new System.Drawing.Point(589, 18);
     this.txtQty.Name      = "txtQty";
     this.txtQty.ReadOnly  = true;
     this.txtQty.Size      = new System.Drawing.Size(100, 21);
     this.txtQty.TabIndex  = 9;
     this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblEngineer
     //
     this.lblEngineer.AutoSize  = true;
     this.lblEngineer.Location  = new System.Drawing.Point(213, 48);
     this.lblEngineer.Name      = "lblEngineer";
     this.lblEngineer.Size      = new System.Drawing.Size(36, 13);
     this.lblEngineer.TabIndex  = 10;
     this.lblEngineer.Text      = "ENG\'R";
     this.lblEngineer.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblProduct
     //
     this.lblProduct.AutoSize  = true;
     this.lblProduct.Location  = new System.Drawing.Point(361, 48);
     this.lblProduct.Name      = "lblProduct";
     this.lblProduct.Size      = new System.Drawing.Size(55, 13);
     this.lblProduct.TabIndex  = 11;
     this.lblProduct.Text      = "Production operation";
     this.lblProduct.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblBusiness
     //
     this.lblBusiness.AutoSize  = true;
     this.lblBusiness.Location  = new System.Drawing.Point(528, 48);
     this.lblBusiness.Name      = "lblBusiness";
     this.lblBusiness.Size      = new System.Drawing.Size(55, 13);
     this.lblBusiness.TabIndex  = 12;
     this.lblBusiness.Text      = "Sales Manager";
     this.lblBusiness.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblNotice
     //
     this.lblNotice.AutoSize  = true;
     this.lblNotice.Location  = new System.Drawing.Point(10, 75);
     this.lblNotice.Name      = "lblNotice";
     this.lblNotice.Size      = new System.Drawing.Size(73, 13);
     this.lblNotice.TabIndex  = 13;
     this.lblNotice.Text      = "Special Notice";
     this.lblNotice.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtPlace
     //
     this.txtPlace.Location = new System.Drawing.Point(89, 45);
     this.txtPlace.Name     = "txtPlace";
     this.txtPlace.ReadOnly = true;
     this.txtPlace.Size     = new System.Drawing.Size(100, 21);
     this.txtPlace.TabIndex = 14;
     //
     // txtEngineer
     //
     this.txtEngineer.Location = new System.Drawing.Point(255, 45);
     this.txtEngineer.Name     = "txtEngineer";
     this.txtEngineer.ReadOnly = true;
     this.txtEngineer.Size     = new System.Drawing.Size(100, 21);
     this.txtEngineer.TabIndex = 15;
     //
     // txtProduct
     //
     this.txtProduct.Location = new System.Drawing.Point(422, 45);
     this.txtProduct.Name     = "txtProduct";
     this.txtProduct.ReadOnly = true;
     this.txtProduct.Size     = new System.Drawing.Size(100, 21);
     this.txtProduct.TabIndex = 16;
     //
     // txtBusiness
     //
     this.txtBusiness.Location = new System.Drawing.Point(589, 45);
     this.txtBusiness.Name     = "txtBusiness";
     this.txtBusiness.ReadOnly = true;
     this.txtBusiness.Size     = new System.Drawing.Size(100, 21);
     this.txtBusiness.TabIndex = 17;
     //
     // txtNotice
     //
     this.txtNotice.Location = new System.Drawing.Point(89, 72);
     this.txtNotice.Name     = "txtNotice";
     this.txtNotice.ReadOnly = true;
     this.txtNotice.Size     = new System.Drawing.Size(600, 21);
     this.txtNotice.TabIndex = 18;
     //
     // PRD010221_P1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(943, 439);
     this.Controls.Add(this.splitContainer1);
     this.Font          = new System.Drawing.Font("Tahoma", 8.25F);
     this.Name          = "PRD010221_P1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Progress management";
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.spdDataOperInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spdDataOperInfo_Sheet1)).EndInit();
     this.grpbLotInfo.ResumeLayout(false);
     this.grpbLotInfo.PerformLayout();
     this.ResumeLayout(false);
 }
示例#10
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            FarPoint.Win.Spread.NamedStyle namedStyle1 = new FarPoint.Win.Spread.NamedStyle("ColumnHeaderEnhanced");
            FarPoint.Win.Spread.NamedStyle namedStyle2 = new FarPoint.Win.Spread.NamedStyle("RowHeaderEnhanced");
            FarPoint.Win.Spread.NamedStyle namedStyle3 = new FarPoint.Win.Spread.NamedStyle("CornerEnhanced");
            FarPoint.Win.Spread.CellType.EnhancedCornerRenderer enhancedCornerRenderer1 = new FarPoint.Win.Spread.CellType.EnhancedCornerRenderer();
            FarPoint.Win.Spread.NamedStyle namedStyle4 = new FarPoint.Win.Spread.NamedStyle("DataAreaDefault");
            FarPoint.Win.Spread.CellType.GeneralCellType generalCellType1 = new FarPoint.Win.Spread.CellType.GeneralCellType();
            FarPoint.Win.Spread.SpreadSkin spreadSkin1 = new FarPoint.Win.Spread.SpreadSkin();
            FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer enhancedFocusIndicatorRenderer1 = new FarPoint.Win.Spread.EnhancedFocusIndicatorRenderer();
            FarPoint.Win.Spread.EnhancedInterfaceRenderer enhancedInterfaceRenderer1 = new FarPoint.Win.Spread.EnhancedInterfaceRenderer();
            FarPoint.Win.Spread.EnhancedScrollBarRenderer enhancedScrollBarRenderer1 = new FarPoint.Win.Spread.EnhancedScrollBarRenderer();
            FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType2 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType3 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType4 = new FarPoint.Win.Spread.CellType.TextCellType();
            FarPoint.Win.Spread.CellType.TextCellType textCellType5 = new FarPoint.Win.Spread.CellType.TextCellType();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PC07));
            this.btnClose = new System.Windows.Forms.Button();
            this.btnSave = new System.Windows.Forms.Button();
            this.btnDelete = new System.Windows.Forms.Button();
            this.btnClear = new System.Windows.Forms.Button();
            this.fspdMc = new FarPoint.Win.Spread.FpSpread();
            this.fspdMc_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.label1 = new System.Windows.Forms.Label();
            this.grpBox = new System.Windows.Forms.GroupBox();
            this.txtDH = new System.Windows.Forms.TextBox();
            this.txtLXR = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.txtDZ = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.txtGYSMC = new System.Windows.Forms.TextBox();
            this.txtGYSSLMC = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.fspdMc)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fspdMc_Sheet1)).BeginInit();
            this.grpBox.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnClose
            // 
            this.btnClose.BackColor = System.Drawing.Color.Transparent;
            this.btnClose.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnClose.ForeColor = System.Drawing.Color.DarkOliveGreen;
            this.btnClose.Location = new System.Drawing.Point(500, 385);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(75, 29);
            this.btnClose.TabIndex = 4449;
            this.btnClose.TabStop = false;
            this.btnClose.Text = "退出(&Q)";
            this.btnClose.UseVisualStyleBackColor = false;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // btnSave
            // 
            this.btnSave.BackColor = System.Drawing.Color.Transparent;
            this.btnSave.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSave.ForeColor = System.Drawing.Color.DarkOliveGreen;
            this.btnSave.Location = new System.Drawing.Point(419, 385);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(75, 29);
            this.btnSave.TabIndex = 4446;
            this.btnSave.Text = "保存(&S)";
            this.btnSave.UseVisualStyleBackColor = false;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // btnDelete
            // 
            this.btnDelete.BackColor = System.Drawing.Color.Transparent;
            this.btnDelete.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnDelete.ForeColor = System.Drawing.Color.DarkOliveGreen;
            this.btnDelete.Location = new System.Drawing.Point(93, 385);
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Size = new System.Drawing.Size(75, 29);
            this.btnDelete.TabIndex = 4450;
            this.btnDelete.TabStop = false;
            this.btnDelete.Text = "删除(&D)";
            this.btnDelete.UseVisualStyleBackColor = false;
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            // 
            // btnClear
            // 
            this.btnClear.BackColor = System.Drawing.Color.Transparent;
            this.btnClear.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnClear.ForeColor = System.Drawing.Color.DarkOliveGreen;
            this.btnClear.Location = new System.Drawing.Point(12, 385);
            this.btnClear.Name = "btnClear";
            this.btnClear.Size = new System.Drawing.Size(75, 29);
            this.btnClear.TabIndex = 4451;
            this.btnClear.TabStop = false;
            this.btnClear.Text = "清空(&C)";
            this.btnClear.UseVisualStyleBackColor = false;
            this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
            // 
            // fspdMc
            // 
            this.fspdMc.AccessibleDescription = "fspdMc, Sheet1, Row 0, Column 0, ";
            this.fspdMc.BackColor = System.Drawing.Color.White;
            this.fspdMc.BorderCollapse = FarPoint.Win.Spread.BorderCollapse.Collapse;
            this.fspdMc.ColumnSplitBoxPolicy = FarPoint.Win.Spread.SplitBoxPolicy.Never;
            this.fspdMc.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
            this.fspdMc.Location = new System.Drawing.Point(7, 138);
            this.fspdMc.Name = "fspdMc";
            namedStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(220)))), ((int)(((byte)(233)))));
            namedStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
            namedStyle1.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle1.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            namedStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(236)))), ((int)(((byte)(247)))));
            namedStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
            namedStyle2.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle2.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            namedStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(196)))), ((int)(((byte)(233)))));
            namedStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
            namedStyle3.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
            namedStyle3.Renderer = enhancedCornerRenderer1;
            namedStyle3.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            namedStyle4.BackColor = System.Drawing.SystemColors.Window;
            namedStyle4.CellType = generalCellType1;
            namedStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
            namedStyle4.Renderer = generalCellType1;
            this.fspdMc.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] {
            namedStyle1,
            namedStyle2,
            namedStyle3,
            namedStyle4});
            this.fspdMc.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.fspdMc.RowSplitBoxPolicy = FarPoint.Win.Spread.SplitBoxPolicy.Never;
            this.fspdMc.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
            this.fspdMc_Sheet1});
            this.fspdMc.Size = new System.Drawing.Size(572, 242);
            spreadSkin1.ColumnHeaderDefaultStyle = namedStyle1;
            spreadSkin1.CornerDefaultStyle = namedStyle3;
            spreadSkin1.DefaultStyle = namedStyle4;
            spreadSkin1.FocusRenderer = enhancedFocusIndicatorRenderer1;
            enhancedInterfaceRenderer1.GrayAreaColor = System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(254)))), ((int)(((byte)(216)))));
            enhancedInterfaceRenderer1.ScrollBoxBackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(161)))), ((int)(((byte)(186)))), ((int)(((byte)(221)))));
            enhancedInterfaceRenderer1.SheetTabLowerActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(210)))), ((int)(((byte)(244)))));
            enhancedInterfaceRenderer1.SheetTabLowerNormalColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(231)))), ((int)(((byte)(249)))));
            enhancedInterfaceRenderer1.SheetTabUpperActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(228)))), ((int)(((byte)(244)))));
            enhancedInterfaceRenderer1.SheetTabUpperNormalColor = System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(229)))), ((int)(((byte)(249)))));
            enhancedInterfaceRenderer1.TabStripBackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(161)))), ((int)(((byte)(186)))), ((int)(((byte)(221)))));
            spreadSkin1.InterfaceRenderer = enhancedInterfaceRenderer1;
            spreadSkin1.Name = "CustomSkin2";
            spreadSkin1.RowHeaderDefaultStyle = namedStyle2;
            spreadSkin1.ScrollBarRenderer = enhancedScrollBarRenderer1;
            spreadSkin1.SelectionRenderer = new FarPoint.Win.Spread.DefaultSelectionRenderer();
            this.fspdMc.Skin = spreadSkin1;
            this.fspdMc.TabIndex = 4447;
            this.fspdMc.TabStop = false;
            this.fspdMc.ColumnWidthChanged += new FarPoint.Win.Spread.ColumnWidthChangedEventHandler(this.fspdMc_ColumnWidthChanged);
            this.fspdMc.LeaveCell += new FarPoint.Win.Spread.LeaveCellEventHandler(this.fspdMc_LeaveCell);
            this.fspdMc.CellClick += new FarPoint.Win.Spread.CellClickEventHandler(this.fspdMc_CellClick);
            this.fspdMc.CellDoubleClick += new FarPoint.Win.Spread.CellClickEventHandler(this.fspdMc_CellDoubleClick);
            // 
            // fspdMc_Sheet1
            // 
            this.fspdMc_Sheet1.Reset();
            this.fspdMc_Sheet1.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fspdMc_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fspdMc_Sheet1.ColumnCount = 6;
            this.fspdMc_Sheet1.ActiveSkin = new FarPoint.Win.Spread.SheetSkin("CustomSkin2", System.Drawing.Color.White, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(232)))), ((int)(((byte)(255))))), FarPoint.Win.Spread.GridLines.Both, System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(232)))), ((int)(((byte)(255))))), System.Drawing.Color.Blue, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, System.Drawing.Color.Empty, false, false, false, true, true, "ColumnHeaderEnhanced", "RowHeaderEnhanced", "DataAreaDefault", "CornerEnhanced");
            this.fspdMc_Sheet1.AllowNoteEdit = true;
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 0).ForeColor = System.Drawing.Color.Black;
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 0).Value = "供应商名称";
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 1).Font = new System.Drawing.Font("宋体", 9F);
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 1).ForeColor = System.Drawing.Color.Black;
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 1).Value = "缩略名称";
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 2).Font = new System.Drawing.Font("宋体", 9F);
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 2).ForeColor = System.Drawing.Color.Black;
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 2).Value = "地址";
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 3).Font = new System.Drawing.Font("宋体", 9F);
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 3).ForeColor = System.Drawing.Color.Black;
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 3).Value = "电话";
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 4).Font = new System.Drawing.Font("宋体", 9F);
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 4).ForeColor = System.Drawing.Color.Black;
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 4).Value = "联系人";
            this.fspdMc_Sheet1.ColumnHeader.Cells.Get(0, 5).Value = "ID";
            this.fspdMc_Sheet1.ColumnHeader.Columns.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.fspdMc_Sheet1.ColumnHeader.DefaultStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(232)))), ((int)(((byte)(255)))));
            this.fspdMc_Sheet1.ColumnHeader.DefaultStyle.ForeColor = System.Drawing.Color.Blue;
            this.fspdMc_Sheet1.ColumnHeader.DefaultStyle.Parent = "ColumnHeaderEnhanced";
            this.fspdMc_Sheet1.ColumnHeader.DefaultStyle.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.fspdMc_Sheet1.ColumnHeader.Rows.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.fspdMc_Sheet1.Columns.Get(0).BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.fspdMc_Sheet1.Columns.Get(0).CellType = textCellType1;
            this.fspdMc_Sheet1.Columns.Get(0).ForeColor = System.Drawing.Color.Black;
            this.fspdMc_Sheet1.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fspdMc_Sheet1.Columns.Get(0).Label = "供应商名称";
            this.fspdMc_Sheet1.Columns.Get(0).Locked = true;
            this.fspdMc_Sheet1.Columns.Get(0).Resizable = false;
            this.fspdMc_Sheet1.Columns.Get(0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fspdMc_Sheet1.Columns.Get(0).Width = 120F;
            this.fspdMc_Sheet1.Columns.Get(1).BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.fspdMc_Sheet1.Columns.Get(1).CellType = textCellType2;
            this.fspdMc_Sheet1.Columns.Get(1).ForeColor = System.Drawing.Color.Black;
            this.fspdMc_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fspdMc_Sheet1.Columns.Get(1).Label = "缩略名称";
            this.fspdMc_Sheet1.Columns.Get(1).Locked = true;
            this.fspdMc_Sheet1.Columns.Get(1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fspdMc_Sheet1.Columns.Get(1).Width = 80F;
            this.fspdMc_Sheet1.Columns.Get(2).BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.fspdMc_Sheet1.Columns.Get(2).CellType = textCellType3;
            this.fspdMc_Sheet1.Columns.Get(2).ForeColor = System.Drawing.Color.Black;
            this.fspdMc_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fspdMc_Sheet1.Columns.Get(2).Label = "地址";
            this.fspdMc_Sheet1.Columns.Get(2).Locked = true;
            this.fspdMc_Sheet1.Columns.Get(2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fspdMc_Sheet1.Columns.Get(2).Width = 180F;
            this.fspdMc_Sheet1.Columns.Get(3).BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.fspdMc_Sheet1.Columns.Get(3).CellType = textCellType4;
            this.fspdMc_Sheet1.Columns.Get(3).ForeColor = System.Drawing.Color.Black;
            this.fspdMc_Sheet1.Columns.Get(3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fspdMc_Sheet1.Columns.Get(3).Label = "电话";
            this.fspdMc_Sheet1.Columns.Get(3).Locked = true;
            this.fspdMc_Sheet1.Columns.Get(3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fspdMc_Sheet1.Columns.Get(3).Width = 75F;
            this.fspdMc_Sheet1.Columns.Get(4).BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.fspdMc_Sheet1.Columns.Get(4).CellType = textCellType5;
            this.fspdMc_Sheet1.Columns.Get(4).ForeColor = System.Drawing.Color.Black;
            this.fspdMc_Sheet1.Columns.Get(4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left;
            this.fspdMc_Sheet1.Columns.Get(4).Label = "联系人";
            this.fspdMc_Sheet1.Columns.Get(4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center;
            this.fspdMc_Sheet1.Columns.Get(5).Label = "ID";
            this.fspdMc_Sheet1.Columns.Get(5).Visible = false;
            this.fspdMc_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fspdMc_Sheet1.RowHeader.Columns.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.fspdMc_Sheet1.RowHeader.DefaultStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(232)))), ((int)(((byte)(255)))));
            this.fspdMc_Sheet1.RowHeader.DefaultStyle.ForeColor = System.Drawing.Color.Blue;
            this.fspdMc_Sheet1.RowHeader.DefaultStyle.Parent = "RowHeaderEnhanced";
            this.fspdMc_Sheet1.RowHeader.DefaultStyle.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.fspdMc_Sheet1.RowHeader.Rows.Default.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.fspdMc_Sheet1.Rows.Get(0).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(0).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(1).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(1).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(2).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(2).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(3).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(3).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(4).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(4).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(5).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(5).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(6).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(6).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(7).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(7).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(8).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(8).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(9).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(9).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(10).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(10).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(11).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(11).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(12).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(12).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(13).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(13).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(14).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(14).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(15).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(15).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(16).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(16).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(17).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(17).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(18).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(18).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(19).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(19).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(20).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(20).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(21).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(21).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(22).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(22).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(23).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(23).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(24).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(24).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(25).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(25).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(26).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(26).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(27).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(27).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(28).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(28).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(29).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(29).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(30).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(30).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(31).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(31).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(32).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(32).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(33).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(33).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(34).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(34).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(35).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(35).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(36).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(36).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(37).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(37).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(38).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(38).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(39).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(39).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(40).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(40).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(41).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(41).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(42).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(42).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(43).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(43).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(44).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(44).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(45).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(45).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(46).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(46).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(47).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(47).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(48).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(48).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(49).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(49).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(50).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(50).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(51).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(51).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(52).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(52).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(53).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(53).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(54).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(54).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(55).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(55).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(56).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(56).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(57).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(57).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(58).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(58).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(59).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(59).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(60).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(60).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(61).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(61).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(62).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(62).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(63).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(63).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(64).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(64).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(65).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(65).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(66).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(66).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(67).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(67).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(68).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(68).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(69).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(69).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(70).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(70).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(71).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(71).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(72).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(72).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(73).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(73).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(74).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(74).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(75).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(75).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(76).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(76).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(77).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(77).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(78).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(78).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(79).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(79).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(80).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(80).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(81).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(81).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(82).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(82).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(83).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(83).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(84).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(84).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(85).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(85).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(86).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(86).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(87).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(87).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(88).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(88).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(89).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(89).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(90).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(90).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(91).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(91).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(92).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(92).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(93).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(93).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(94).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(94).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(95).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(95).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(96).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(96).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(97).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(97).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(98).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(98).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(99).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(99).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(100).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(100).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(101).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(101).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(102).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(102).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(103).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(103).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(104).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(104).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(105).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(105).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(106).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(106).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(107).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(107).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(108).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(108).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(109).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(109).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(110).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(110).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(111).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(111).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(112).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(112).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(113).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(113).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(114).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(114).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(115).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(115).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(116).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(116).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(117).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(117).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(118).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(118).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(119).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(119).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(120).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(120).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(121).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(121).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(122).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(122).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(123).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(123).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(124).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(124).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(125).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(125).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(126).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(126).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(127).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(127).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(128).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(128).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(129).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(129).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(130).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(130).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(131).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(131).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(132).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(132).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(133).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(133).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(134).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(134).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(135).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(135).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(136).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(136).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(137).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(137).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(138).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(138).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(139).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(139).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(140).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(140).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(141).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(141).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(142).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(142).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(143).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(143).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(144).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(144).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(145).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(145).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(146).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(146).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(147).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(147).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(148).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(148).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(149).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(149).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(150).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(150).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(151).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(151).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(152).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(152).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(153).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(153).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(154).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(154).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(155).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(155).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(156).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(156).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(157).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(157).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(158).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(158).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(159).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(159).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(160).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(160).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(161).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(161).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(162).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(162).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(163).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(163).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(164).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(164).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(165).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(165).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(166).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(166).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(167).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(167).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(168).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(168).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(169).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(169).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(170).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(170).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(171).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(171).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(172).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(172).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(173).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(173).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(174).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(174).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(175).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(175).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(176).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(176).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(177).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(177).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(178).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(178).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(179).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(179).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(180).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(180).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(181).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(181).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(182).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(182).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(183).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(183).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(184).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(184).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(185).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(185).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(186).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(186).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(187).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(187).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(188).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(188).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(189).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(189).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(190).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(190).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(191).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(191).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(192).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(192).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(193).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(193).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(194).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(194).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(195).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(195).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(196).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(196).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(197).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(197).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(198).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(198).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(199).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(199).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(200).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(200).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(201).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(201).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(202).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(202).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(203).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(203).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(204).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(204).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(205).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(205).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(206).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(206).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(207).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(207).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(208).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(208).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(209).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(209).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(210).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(210).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(211).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(211).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(212).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(212).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(213).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(213).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(214).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(214).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(215).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(215).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(216).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(216).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(217).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(217).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(218).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(218).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(219).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(219).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(220).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(220).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(221).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(221).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(222).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(222).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(223).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(223).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(224).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(224).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(225).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(225).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(226).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(226).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(227).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(227).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(228).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(228).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(229).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(229).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(230).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(230).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(231).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(231).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(232).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(232).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(233).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(233).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(234).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(234).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(235).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(235).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(236).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(236).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(237).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(237).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(238).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(238).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(239).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(239).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(240).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(240).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(241).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(241).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(242).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(242).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(243).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(243).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(244).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(244).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(245).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(245).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(246).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(246).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(247).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(247).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(248).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(248).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(249).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(249).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(250).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(250).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(251).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(251).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(252).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(252).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(253).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(253).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(254).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(254).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(255).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(255).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(256).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(256).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(257).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(257).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(258).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(258).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(259).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(259).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(260).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(260).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(261).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(261).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(262).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(262).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(263).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(263).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(264).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(264).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(265).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(265).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(266).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(266).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(267).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(267).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(268).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(268).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(269).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(269).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(270).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(270).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(271).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(271).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(272).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(272).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(273).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(273).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(274).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(274).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(275).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(275).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(276).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(276).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(277).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(277).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(278).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(278).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(279).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(279).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(280).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(280).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(281).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(281).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(282).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(282).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(283).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(283).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(284).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(284).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(285).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(285).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(286).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(286).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(287).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(287).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(288).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(288).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(289).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(289).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(290).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(290).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(291).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(291).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(292).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(292).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(293).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(293).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(294).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(294).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(295).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(295).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(296).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(296).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(297).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(297).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(298).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(298).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(299).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(299).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(300).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(300).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(301).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(301).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(302).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(302).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(303).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(303).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(304).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(304).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(305).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(305).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(306).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(306).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(307).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(307).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(308).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(308).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(309).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(309).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(310).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(310).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(311).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(311).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(312).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(312).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(313).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(313).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(314).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(314).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(315).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(315).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(316).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(316).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(317).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(317).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(318).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(318).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(319).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(319).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(320).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(320).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(321).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(321).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(322).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(322).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(323).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(323).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(324).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(324).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(325).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(325).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(326).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(326).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(327).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(327).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(328).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(328).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(329).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(329).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(330).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(330).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(331).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(331).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(332).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(332).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(333).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(333).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(334).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(334).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(335).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(335).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(336).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(336).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(337).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(337).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(338).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(338).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(339).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(339).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(340).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(340).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(341).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(341).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(342).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(342).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(343).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(343).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(344).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(344).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(345).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(345).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(346).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(346).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(347).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(347).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(348).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(348).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(349).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(349).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(350).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(350).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(351).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(351).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(352).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(352).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(353).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(353).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(354).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(354).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(355).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(355).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(356).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(356).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(357).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(357).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(358).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(358).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(359).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(359).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(360).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(360).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(361).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(361).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(362).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(362).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(363).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(363).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(364).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(364).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(365).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(365).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(366).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(366).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(367).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(367).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(368).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(368).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(369).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(369).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(370).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(370).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(371).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(371).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(372).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(372).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(373).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(373).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(374).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(374).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(375).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(375).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(376).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(376).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(377).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(377).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(378).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(378).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(379).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(379).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(380).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(380).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(381).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(381).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(382).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(382).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(383).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(383).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(384).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(384).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(385).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(385).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(386).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(386).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(387).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(387).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(388).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(388).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(389).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(389).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(390).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(390).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(391).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(391).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(392).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(392).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(393).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(393).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(394).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(394).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(395).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(395).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(396).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(396).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(397).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(397).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(398).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(398).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(399).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(399).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(400).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(400).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(401).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(401).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(402).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(402).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(403).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(403).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(404).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(404).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(405).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(405).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(406).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(406).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(407).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(407).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(408).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(408).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(409).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(409).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(410).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(410).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(411).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(411).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(412).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(412).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(413).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(413).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(414).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(414).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(415).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(415).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(416).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(416).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(417).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(417).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(418).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(418).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(419).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(419).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(420).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(420).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(421).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(421).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(422).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(422).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(423).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(423).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(424).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(424).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(425).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(425).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(426).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(426).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(427).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(427).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(428).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(428).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(429).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(429).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(430).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(430).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(431).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(431).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(432).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(432).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(433).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(433).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(434).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(434).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(435).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(435).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(436).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(436).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(437).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(437).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(438).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(438).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(439).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(439).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(440).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(440).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(441).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(441).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(442).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(442).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(443).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(443).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(444).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(444).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(445).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(445).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(446).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(446).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(447).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(447).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(448).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(448).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(449).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(449).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(450).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(450).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(451).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(451).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(452).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(452).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(453).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(453).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(454).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(454).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(455).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(455).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(456).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(456).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(457).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(457).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(458).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(458).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(459).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(459).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(460).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(460).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(461).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(461).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(462).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(462).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(463).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(463).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(464).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(464).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(465).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(465).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(466).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(466).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(467).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(467).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(468).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(468).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(469).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(469).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(470).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(470).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(471).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(471).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(472).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(472).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(473).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(473).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(474).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(474).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(475).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(475).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(476).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(476).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(477).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(477).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(478).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(478).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(479).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(479).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(480).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(480).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(481).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(481).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(482).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(482).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(483).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(483).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(484).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(484).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(485).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(485).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(486).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(486).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(487).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(487).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(488).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(488).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(489).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(489).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(490).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(490).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(491).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(491).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(492).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(492).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(493).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(493).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(494).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(494).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(495).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(495).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(496).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(496).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(497).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(497).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(498).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(498).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.Rows.Get(499).Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.fspdMc_Sheet1.Rows.Get(499).ForeColor = System.Drawing.Color.Navy;
            this.fspdMc_Sheet1.SheetCornerStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(232)))), ((int)(((byte)(255)))));
            this.fspdMc_Sheet1.SheetCornerStyle.ForeColor = System.Drawing.Color.Blue;
            this.fspdMc_Sheet1.SheetCornerStyle.Parent = "CornerEnhanced";
            this.fspdMc_Sheet1.SheetCornerStyle.VisualStyles = FarPoint.Win.VisualStyles.Off;
            this.fspdMc_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            // 
            // label1
            // 
            this.label1.BackColor = System.Drawing.Color.Transparent;
            this.label1.Dock = System.Windows.Forms.DockStyle.Top;
            this.label1.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label1.ForeColor = System.Drawing.Color.DarkOliveGreen;
            this.label1.Location = new System.Drawing.Point(0, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(590, 24);
            this.label1.TabIndex = 4448;
            this.label1.Text = "供 应 商 信 息 管 理";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // grpBox
            // 
            this.grpBox.BackColor = System.Drawing.Color.Transparent;
            this.grpBox.Controls.Add(this.txtDH);
            this.grpBox.Controls.Add(this.txtLXR);
            this.grpBox.Controls.Add(this.label4);
            this.grpBox.Controls.Add(this.label6);
            this.grpBox.Controls.Add(this.txtDZ);
            this.grpBox.Controls.Add(this.label2);
            this.grpBox.Controls.Add(this.label8);
            this.grpBox.Controls.Add(this.txtGYSMC);
            this.grpBox.Controls.Add(this.txtGYSSLMC);
            this.grpBox.Controls.Add(this.label3);
            this.grpBox.Controls.Add(this.label5);
            this.grpBox.ForeColor = System.Drawing.Color.Navy;
            this.grpBox.Location = new System.Drawing.Point(8, 24);
            this.grpBox.Name = "grpBox";
            this.grpBox.Size = new System.Drawing.Size(572, 108);
            this.grpBox.TabIndex = 0;
            this.grpBox.TabStop = false;
            // 
            // txtDH
            // 
            this.txtDH.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDH.ForeColor = System.Drawing.Color.Black;
            this.txtDH.Location = new System.Drawing.Point(122, 74);
            this.txtDH.MaxLength = 100;
            this.txtDH.Name = "txtDH";
            this.txtDH.ShortcutsEnabled = false;
            this.txtDH.Size = new System.Drawing.Size(106, 21);
            this.txtDH.TabIndex = 12;
            // 
            // txtLXR
            // 
            this.txtLXR.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtLXR.ForeColor = System.Drawing.Color.Black;
            this.txtLXR.Location = new System.Drawing.Point(378, 74);
            this.txtLXR.MaxLength = 50;
            this.txtLXR.Name = "txtLXR";
            this.txtLXR.ShortcutsEnabled = false;
            this.txtLXR.Size = new System.Drawing.Size(153, 21);
            this.txtLXR.TabIndex = 14;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.ForeColor = System.Drawing.Color.DarkOliveGreen;
            this.label4.Location = new System.Drawing.Point(75, 79);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(44, 12);
            this.label4.TabIndex = 11;
            this.label4.Text = "电话:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.ForeColor = System.Drawing.Color.DarkOliveGreen;
            this.label6.Location = new System.Drawing.Point(318, 79);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(57, 12);
            this.label6.TabIndex = 13;
            this.label6.Text = "联系人:";
            // 
            // txtDZ
            // 
            this.txtDZ.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtDZ.ForeColor = System.Drawing.Color.Black;
            this.txtDZ.Location = new System.Drawing.Point(122, 47);
            this.txtDZ.MaxLength = 50;
            this.txtDZ.Name = "txtDZ";
            this.txtDZ.ShortcutsEnabled = false;
            this.txtDZ.Size = new System.Drawing.Size(409, 21);
            this.txtDZ.TabIndex = 10;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ForeColor = System.Drawing.Color.DarkOliveGreen;
            this.label2.Location = new System.Drawing.Point(75, 52);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(44, 12);
            this.label2.TabIndex = 9;
            this.label2.Text = "地址:";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.ForeColor = System.Drawing.Color.Red;
            this.label8.Location = new System.Drawing.Point(27, 25);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(11, 12);
            this.label8.TabIndex = 8;
            this.label8.Text = "*";
            // 
            // txtGYSMC
            // 
            this.txtGYSMC.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtGYSMC.ForeColor = System.Drawing.Color.Black;
            this.txtGYSMC.Location = new System.Drawing.Point(122, 20);
            this.txtGYSMC.MaxLength = 100;
            this.txtGYSMC.Name = "txtGYSMC";
            this.txtGYSMC.ShortcutsEnabled = false;
            this.txtGYSMC.Size = new System.Drawing.Size(106, 21);
            this.txtGYSMC.TabIndex = 5;
            this.txtGYSMC.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtZsMc_KeyPress);
            // 
            // txtGYSSLMC
            // 
            this.txtGYSSLMC.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtGYSSLMC.ForeColor = System.Drawing.Color.Black;
            this.txtGYSSLMC.Location = new System.Drawing.Point(378, 20);
            this.txtGYSSLMC.MaxLength = 50;
            this.txtGYSSLMC.Name = "txtGYSSLMC";
            this.txtGYSSLMC.ShortcutsEnabled = false;
            this.txtGYSSLMC.Size = new System.Drawing.Size(153, 21);
            this.txtGYSSLMC.TabIndex = 7;
            this.txtGYSSLMC.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSxMc_KeyPress);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.ForeColor = System.Drawing.Color.DarkOliveGreen;
            this.label3.Location = new System.Drawing.Point(36, 25);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(83, 12);
            this.label3.TabIndex = 3;
            this.label3.Text = "供应商名称:";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.ForeColor = System.Drawing.Color.DarkOliveGreen;
            this.label5.Location = new System.Drawing.Point(279, 25);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(96, 12);
            this.label5.TabIndex = 5;
            this.label5.Text = "客户名称缩写:";
            // 
            // PC07
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.ClientSize = new System.Drawing.Size(590, 418);
            this.Controls.Add(this.btnClose);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.btnDelete);
            this.Controls.Add(this.btnClear);
            this.Controls.Add(this.fspdMc);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.grpBox);
            this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.Name = "PC07";
            this.Text = "供应商信息管理-PC07";
            this.Load += new System.EventHandler(this.WinFMD010_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WinFMD010_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.fspdMc)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fspdMc_Sheet1)).EndInit();
            this.grpBox.ResumeLayout(false);
            this.grpBox.PerformLayout();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     FarPoint.Win.Spread.CellType.ColumnHeaderRenderer columnHeaderRenderer2          = new FarPoint.Win.Spread.CellType.ColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.RowHeaderRenderer    rowHeaderRenderer2             = new FarPoint.Win.Spread.CellType.RowHeaderRenderer();
     FarPoint.Win.Spread.CellType.ColumnHeaderRenderer columnHeaderRenderer1          = new FarPoint.Win.Spread.CellType.ColumnHeaderRenderer();
     FarPoint.Win.Spread.CellType.RowHeaderRenderer    rowHeaderRenderer1             = new FarPoint.Win.Spread.CellType.RowHeaderRenderer();
     FarPoint.Win.Spread.DefaultFocusIndicatorRenderer defaultFocusIndicatorRenderer1 = new FarPoint.Win.Spread.DefaultFocusIndicatorRenderer();
     FarPoint.Win.Spread.DefaultScrollBarRenderer      defaultScrollBarRenderer1      = new FarPoint.Win.Spread.DefaultScrollBarRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle1 = new FarPoint.Win.Spread.NamedStyle("HeaderDefault");
     FarPoint.Win.Spread.CellType.ColumnHeaderRenderer columnHeaderRenderer3 = new FarPoint.Win.Spread.CellType.ColumnHeaderRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle2 = new FarPoint.Win.Spread.NamedStyle("RowHeaderDefault");
     FarPoint.Win.Spread.CellType.RowHeaderRenderer rowHeaderRenderer3 = new FarPoint.Win.Spread.CellType.RowHeaderRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle3 = new FarPoint.Win.Spread.NamedStyle("CornerDefault");
     FarPoint.Win.Spread.CellType.CornerRenderer cornerRenderer1 = new FarPoint.Win.Spread.CellType.CornerRenderer();
     FarPoint.Win.Spread.NamedStyle namedStyle4 = new FarPoint.Win.Spread.NamedStyle("DataAreaDefault");
     FarPoint.Win.Spread.CellType.GeneralCellType  generalCellType1          = new FarPoint.Win.Spread.CellType.GeneralCellType();
     FarPoint.Win.Spread.DefaultScrollBarRenderer  defaultScrollBarRenderer2 = new FarPoint.Win.Spread.DefaultScrollBarRenderer();
     FarPoint.Win.Spread.CellType.TextCellType     textCellType1             = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.Spread.CellType.TextCellType     textCellType2             = new FarPoint.Win.Spread.CellType.TextCellType();
     FarPoint.Win.Spread.CellType.ComboBoxCellType comboBoxCellType1         = new FarPoint.Win.Spread.CellType.ComboBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType1         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType2         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType3         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType4         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType5         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     FarPoint.Win.Spread.CellType.CheckBoxCellType checkBoxCellType6         = new FarPoint.Win.Spread.CellType.CheckBoxCellType();
     this.groupBox2        = new System.Windows.Forms.GroupBox();
     this.DataItems        = new FarPoint.Win.Spread.FpSpread();
     this.DataItems_Sheet1 = new FarPoint.Win.Spread.SheetView();
     this.Button_ok        = new System.Windows.Forms.Button();
     this.Button_cancel    = new System.Windows.Forms.Button();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DataItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataItems_Sheet1)).BeginInit();
     this.SuspendLayout();
     columnHeaderRenderer2.BackColor         = System.Drawing.SystemColors.Control;
     columnHeaderRenderer2.Font              = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     columnHeaderRenderer2.ForeColor         = System.Drawing.SystemColors.ControlText;
     columnHeaderRenderer2.Name              = "columnHeaderRenderer2";
     columnHeaderRenderer2.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     columnHeaderRenderer2.TextRotationAngle = 0;
     rowHeaderRenderer2.BackColor            = System.Drawing.SystemColors.Control;
     rowHeaderRenderer2.Font                 = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     rowHeaderRenderer2.ForeColor            = System.Drawing.SystemColors.ControlText;
     rowHeaderRenderer2.Name                 = "rowHeaderRenderer2";
     rowHeaderRenderer2.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     rowHeaderRenderer2.TextRotationAngle    = 0;
     columnHeaderRenderer1.BackColor         = System.Drawing.SystemColors.Control;
     columnHeaderRenderer1.Font              = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     columnHeaderRenderer1.ForeColor         = System.Drawing.SystemColors.ControlText;
     columnHeaderRenderer1.Name              = "columnHeaderRenderer1";
     columnHeaderRenderer1.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     columnHeaderRenderer1.TextRotationAngle = 0;
     rowHeaderRenderer1.BackColor            = System.Drawing.SystemColors.Control;
     rowHeaderRenderer1.Font                 = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     rowHeaderRenderer1.ForeColor            = System.Drawing.SystemColors.ControlText;
     rowHeaderRenderer1.Name                 = "rowHeaderRenderer1";
     rowHeaderRenderer1.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     rowHeaderRenderer1.TextRotationAngle    = 0;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.DataItems);
     this.groupBox2.Location = new System.Drawing.Point(8, 12);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(774, 331);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "数据项属性";
     //
     // DataItems
     //
     this.DataItems.AccessibleDescription = "DataItems, Sheet_DataItems";
     this.DataItems.BackColor             = System.Drawing.SystemColors.Control;
     this.DataItems.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.DataItems.FocusRenderer = defaultFocusIndicatorRenderer1;
     this.DataItems.HorizontalScrollBar.Buttons  = new FarPoint.Win.Spread.FpScrollBarButtonCollection("BackwardLineButton,ThumbTrack,ForwardLineButton");
     this.DataItems.HorizontalScrollBar.Name     = "";
     this.DataItems.HorizontalScrollBar.Renderer = defaultScrollBarRenderer1;
     this.DataItems.HorizontalScrollBar.TabIndex = 8;
     this.DataItems.HorizontalScrollBarPolicy    = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     this.DataItems.Location                 = new System.Drawing.Point(3, 17);
     this.DataItems.Name                     = "DataItems";
     namedStyle1.BackColor                   = System.Drawing.SystemColors.Control;
     namedStyle1.ForeColor                   = System.Drawing.SystemColors.ControlText;
     namedStyle1.HorizontalAlignment         = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     columnHeaderRenderer3.BackColor         = System.Drawing.SystemColors.Control;
     columnHeaderRenderer3.Font              = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     columnHeaderRenderer3.ForeColor         = System.Drawing.SystemColors.ControlText;
     columnHeaderRenderer3.Name              = "";
     columnHeaderRenderer3.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     columnHeaderRenderer3.TextRotationAngle = 0;
     namedStyle1.Renderer                    = columnHeaderRenderer3;
     namedStyle1.VerticalAlignment           = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle2.BackColor                   = System.Drawing.SystemColors.Control;
     namedStyle2.ForeColor                   = System.Drawing.SystemColors.ControlText;
     namedStyle2.HorizontalAlignment         = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     rowHeaderRenderer3.BackColor            = System.Drawing.SystemColors.Control;
     rowHeaderRenderer3.Font                 = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     rowHeaderRenderer3.ForeColor            = System.Drawing.SystemColors.ControlText;
     rowHeaderRenderer3.Name                 = "";
     rowHeaderRenderer3.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     rowHeaderRenderer3.TextRotationAngle    = 0;
     namedStyle2.Renderer                    = rowHeaderRenderer3;
     namedStyle2.VerticalAlignment           = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle3.BackColor                   = System.Drawing.SystemColors.Control;
     namedStyle3.ForeColor                   = System.Drawing.SystemColors.ControlText;
     namedStyle3.HorizontalAlignment         = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     namedStyle3.Renderer                    = cornerRenderer1;
     namedStyle3.VerticalAlignment           = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     namedStyle4.BackColor                   = System.Drawing.SystemColors.Window;
     namedStyle4.CellType                    = generalCellType1;
     namedStyle4.ForeColor                   = System.Drawing.SystemColors.WindowText;
     namedStyle4.Renderer                    = generalCellType1;
     this.DataItems.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] {
         namedStyle1,
         namedStyle2,
         namedStyle3,
         namedStyle4
     });
     this.DataItems.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.DataItems.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
         this.DataItems_Sheet1
     });
     this.DataItems.Size     = new System.Drawing.Size(768, 311);
     this.DataItems.Skin     = FarPoint.Win.Spread.DefaultSpreadSkins.Classic;
     this.DataItems.TabIndex = 0;
     this.DataItems.VerticalScrollBar.Buttons  = new FarPoint.Win.Spread.FpScrollBarButtonCollection("BackwardLineButton,ThumbTrack,ForwardLineButton");
     this.DataItems.VerticalScrollBar.Name     = "";
     this.DataItems.VerticalScrollBar.Renderer = defaultScrollBarRenderer2;
     this.DataItems.VerticalScrollBar.TabIndex = 9;
     this.DataItems.VerticalScrollBarPolicy    = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded;
     //
     // DataItems_Sheet1
     //
     this.DataItems_Sheet1.Reset();
     this.DataItems_Sheet1.SheetName = "Sheet_DataItems";
     // Formulas and custom names must be loaded with R1C1 reference style
     this.DataItems_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
     this.DataItems_Sheet1.ColumnCount    = 9;
     this.DataItems_Sheet1.RowCount       = 0;
     this.DataItems_Sheet1.ColumnHeader.Cells.Get(0, 0).Value = "区域";
     this.DataItems_Sheet1.ColumnHeader.Cells.Get(0, 1).Value = "名称";
     this.DataItems_Sheet1.ColumnHeader.Cells.Get(0, 2).Value = "类型";
     this.DataItems_Sheet1.ColumnHeader.Cells.Get(0, 3).Value = "值唯一";
     this.DataItems_Sheet1.ColumnHeader.Cells.Get(0, 4).Value = "不允许空";
     this.DataItems_Sheet1.ColumnHeader.Cells.Get(0, 5).Value = "不可复制";
     this.DataItems_Sheet1.ColumnHeader.Cells.Get(0, 6).Value = "可平行";
     this.DataItems_Sheet1.ColumnHeader.Cells.Get(0, 7).Value = "只读";
     this.DataItems_Sheet1.ColumnHeader.Cells.Get(0, 8).Value = "关键值";
     this.DataItems_Sheet1.ColumnHeader.DefaultStyle.Parent   = "HeaderDefault";
     this.DataItems_Sheet1.Columns.Get(0).CellType            = textCellType1;
     this.DataItems_Sheet1.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(0).Label               = "区域";
     this.DataItems_Sheet1.Columns.Get(0).Width               = 120F;
     this.DataItems_Sheet1.Columns.Get(1).CellType            = textCellType2;
     this.DataItems_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(1).Label               = "名称";
     this.DataItems_Sheet1.Columns.Get(1).Width               = 157F;
     comboBoxCellType1.ButtonAlign = FarPoint.Win.ButtonAlign.Right;
     comboBoxCellType1.Items       = new string[] {
         "文本",
         "长文本",
         "数字",
         "掩码",
         "日期时间",
         "下拉框",
         "百分号",
         "图片",
         "超链接",
         "货币",
         "复选框",
         "上下标",
         "条形码",
         "删除线"
     };
     this.DataItems_Sheet1.Columns.Get(2).CellType             = comboBoxCellType1;
     this.DataItems_Sheet1.Columns.Get(2).Font                 = new System.Drawing.Font("宋体", 10.5F);
     this.DataItems_Sheet1.Columns.Get(2).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(2).Label                = "类型";
     this.DataItems_Sheet1.Columns.Get(2).Width                = 96F;
     this.DataItems_Sheet1.Columns.Get(3).CellType             = checkBoxCellType1;
     this.DataItems_Sheet1.Columns.Get(3).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(3).Label                = "值唯一";
     this.DataItems_Sheet1.Columns.Get(3).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(3).Width                = 71F;
     this.DataItems_Sheet1.Columns.Get(4).CellType             = checkBoxCellType2;
     this.DataItems_Sheet1.Columns.Get(4).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(4).Label                = "不允许空";
     this.DataItems_Sheet1.Columns.Get(4).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(4).Width                = 69F;
     this.DataItems_Sheet1.Columns.Get(5).CellType             = checkBoxCellType3;
     this.DataItems_Sheet1.Columns.Get(5).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(5).Label                = "不可复制";
     this.DataItems_Sheet1.Columns.Get(5).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(5).Width                = 61F;
     this.DataItems_Sheet1.Columns.Get(6).CellType             = checkBoxCellType4;
     this.DataItems_Sheet1.Columns.Get(6).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(6).Label                = "可平行";
     this.DataItems_Sheet1.Columns.Get(6).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(6).Width                = 57F;
     this.DataItems_Sheet1.Columns.Get(7).CellType             = checkBoxCellType5;
     this.DataItems_Sheet1.Columns.Get(7).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(7).Label                = "只读";
     this.DataItems_Sheet1.Columns.Get(7).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(8).CellType             = checkBoxCellType6;
     this.DataItems_Sheet1.Columns.Get(8).HorizontalAlignment  = FarPoint.Win.Spread.CellHorizontalAlignment.Center;
     this.DataItems_Sheet1.Columns.Get(8).Label                = "关键值";
     this.DataItems_Sheet1.Columns.Get(8).VerticalAlignment    = FarPoint.Win.Spread.CellVerticalAlignment.Center;
     this.DataItems_Sheet1.RowHeader.Columns.Default.Resizable = false;
     this.DataItems_Sheet1.RowHeader.DefaultStyle.Parent       = "RowHeaderDefault";
     this.DataItems_Sheet1.RowHeader.Visible       = false;
     this.DataItems_Sheet1.SheetCornerStyle.Parent = "CornerDefault";
     this.DataItems_Sheet1.VisualStyles            = FarPoint.Win.VisualStyles.Off;
     this.DataItems_Sheet1.ReferenceStyle          = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
     this.DataItems.SetActiveViewport(0, 1, 0);
     //
     // Button_ok
     //
     this.Button_ok.Location = new System.Drawing.Point(608, 357);
     this.Button_ok.Name     = "Button_ok";
     this.Button_ok.Size     = new System.Drawing.Size(75, 23);
     this.Button_ok.TabIndex = 6;
     this.Button_ok.Text     = "确定";
     this.Button_ok.UseVisualStyleBackColor = true;
     this.Button_ok.Click += new System.EventHandler(this.Button_ok_Click);
     //
     // Button_cancel
     //
     this.Button_cancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.Button_cancel.Location                = new System.Drawing.Point(701, 357);
     this.Button_cancel.Name                    = "Button_cancel";
     this.Button_cancel.Size                    = new System.Drawing.Size(75, 23);
     this.Button_cancel.TabIndex                = 7;
     this.Button_cancel.Text                    = "取消";
     this.Button_cancel.UseVisualStyleBackColor = true;
     this.Button_cancel.Click                  += new System.EventHandler(this.Button_cancel_Click);
     //
     // SheetDataItemDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(794, 390);
     this.Controls.Add(this.Button_cancel);
     this.Controls.Add(this.Button_ok);
     this.Controls.Add(this.groupBox2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "SheetDataItemDialog";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load           += new System.EventHandler(this.DataItemForm_Load);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DataItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DataItems_Sheet1)).EndInit();
     this.ResumeLayout(false);
 }