How to shows the 2nd decimal place and the comma symbol?

Stimulsoft Reports.NET discussion
Post Reply
rxjoy
Posts: 2
Joined: Wed Apr 27, 2011 1:46 pm
Location: Taiwan

How to shows the 2nd decimal place and the comma symbol?

Post by rxjoy »

I am useing Version 2010.1.632

My data which was query from DataBase
the format like this

29000.000
12000.123
34300.350

I would like to let it shows comma and 2nd decimal like this

29,000.00
12,000.12
34,300.35

I did set the Textbox's properties format to Number and
Use Group Separator (checked)
Use Local Setting (unchecked)
Decimal Digits :2
Decimal Separator: .
Group Separator :,
Group Size : 3
Negative Pattern : -1

and DataSource type is decimal as well

but after running report whichs still presents as


29000.000
12000.123
34300.350

no cooma and not format to 2nd decimal
does there something I should do but I didn't do? please help
thank you very much!

below is my report code , I have no idea how to write a code for report , they were created by report itself



using System;
using System.Drawing;
using System.Windows.Forms;
using System.Data;
using Stimulsoft.Controls;
using Stimulsoft.Base.Drawing;
using Stimulsoft.Report;
using Stimulsoft.Report.Dialogs;
using Stimulsoft.Report.Components;

namespace Reports
{

public class Report : Stimulsoft.Report.StiReport
{

public Report()
{
this.InitializeComponent();
}
#region StiReport Designer generated code - do not modify
public string ReportTitle;
public string ReportFooter;
public string PageFooter;
public string SDATE;
public string SHOPNO;
public string SORT;
public Stimulsoft.Report.Components.StiPage Page1;
public Stimulsoft.Report.Components.StiPageHeaderBand PageHeader1;
public Stimulsoft.Report.Components.StiText Text23;
public Stimulsoft.Report.Components.StiText Text66;
public Stimulsoft.Report.Components.StiText Text9;
public Stimulsoft.Report.Components.StiText Text38;
public Stimulsoft.Report.Components.StiText Text28;
public Stimulsoft.Report.Components.StiHorizontalLinePrimitive HorizontalLine1;
public Stimulsoft.Report.Components.StiHorizontalLinePrimitive HorizontalLine2;
public Stimulsoft.Report.Components.StiPageFooterBand PageFooter1;
public Stimulsoft.Report.Components.StiText Text32;
public Stimulsoft.Report.Components.StiText Text33;
public Stimulsoft.Report.Components.StiText Text19;
public Stimulsoft.Report.Components.StiPageFooterBand PageFooter2;
public Stimulsoft.Report.Components.StiText Text30;
public Stimulsoft.Report.Components.StiHorizontalLinePrimitive HorizontalLine3;
public Stimulsoft.Report.Components.StiPageFooterBand PageFooter3;
public Stimulsoft.Report.Components.StiText Text12;
public Stimulsoft.Report.Components.StiHorizontalLinePrimitive HorizontalLine4;
public Stimulsoft.Report.Components.StiText Text17;
public Stimulsoft.Report.Components.StiText Text18;
public Stimulsoft.Report.Components.StiText Text21;
public Stimulsoft.Report.Components.StiText Text22;
public Stimulsoft.Report.Components.StiHeaderBand Header1;
public Stimulsoft.Report.Components.StiText Text4;
public Stimulsoft.Report.Components.StiText Text10;
public Stimulsoft.Report.Components.StiText Text29;
public Stimulsoft.Report.Components.StiText Text11;
public Stimulsoft.Report.Components.StiText Text15;
public Stimulsoft.Report.Components.StiText Text8;
public Stimulsoft.Report.Components.StiText Text6;
public Stimulsoft.Report.Components.StiText Text13;
public Stimulsoft.Report.Components.StiText Text20;
public Stimulsoft.Report.Components.StiText Text24;
public Stimulsoft.Report.Components.StiText Text26;
public Stimulsoft.Report.Components.StiDataBand Data1;
public Stimulsoft.Report.Components.StiText Text1;
public Stimulsoft.Report.Components.StiText Text2;
public Stimulsoft.Report.Components.StiText Text3;
public Stimulsoft.Report.Components.StiText Text5;
public Stimulsoft.Report.Components.StiText Text7;
public Stimulsoft.Report.Components.StiText Text14;
public Stimulsoft.Report.Components.StiText Text16;
public Stimulsoft.Report.Components.StiText Text25;
public Stimulsoft.Report.Components.StiText Text27;
public Stimulsoft.Report.Components.StiText Text31;
public Stimulsoft.Report.Components.StiText Text34;
public Stimulsoft.Report.Components.StiHorizontalLinePrimitive HorizontalLine6;
public Stimulsoft.Report.Components.StiFooterBand Footer1;
public Stimulsoft.Report.Components.StiText Text37;
public Stimulsoft.Report.Components.StiText Text35;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text35_Sum;
public Stimulsoft.Report.Components.StiText Text36;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text36_Sum;
public Stimulsoft.Report.Components.StiText Text39;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text39_Sum;
public Stimulsoft.Report.Components.StiText Text40;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text40_Sum;
public Stimulsoft.Report.Components.StiText Text41;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text41_Sum;
public Stimulsoft.Report.Components.StiText Text43;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text43_Sum;
public Stimulsoft.Report.Components.StiText Text44;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text44_Sum;
public Stimulsoft.Report.Components.StiText Text45;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text45_Sum;
public Stimulsoft.Report.Components.StiText Text42;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text42_Sum;
public Stimulsoft.Report.Components.StiHorizontalLinePrimitive HorizontalLine5;
public Stimulsoft.Report.Components.StiWatermark Page1_Watermark;
public Stimulsoft.Report.Print.StiPrinterSettings Report_PrinterSettings;
public TmpSource1DataSource TmpSource1;

public void Text23__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, ReportTitle, true);
}

public void Text66__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, ReportName, true);
}

public void Text9__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "指定店櫃:" + ToString(sender, SHOPNO, true);
}

public void Text38__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "排序方式:" + ToString(sender, SORT, true);
}

public void Text28__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "銷售日期:" + ToString(sender, SDATE, true);
}

public void Text32__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "列印時間:" + ToString(sender, Format("{0:yyyy/MM/dd}", Today), true) + " " + ToString(sender, Format("{0:HH:mm}", Time), true);
}

public void Text33__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "列印人員:" + ToString(sender, ReportAuthor, true);
}

public void Text19__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{PageNumber}/{TotalPageCount}";
e.StoreToPrinted = true;
}

public System.String Text19_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return ToString(sender, PageNumber, true) + "/" + ToString(sender, TotalPageCount, true);
}

public void Text30__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, PageFooter, true);
}

public void HorizontalLine3_BeforePrint(object sender, System.EventArgs e)
{
if (PageFooter=="")
{
HorizontalLine3.Enabled=false;
}
else
{
HorizontalLine3.Enabled=true;
};
}

public void Text12__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, ReportFooter, true);
}

public void HorizontalLine4_BeforePrint(object sender, System.EventArgs e)
{
if (ReportFooter=="")
{
HorizontalLine4.Enabled=false;
}
else
{
HorizontalLine4.Enabled=true;
};
}

public void Text4__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "客戶編號";
}

public void Text10__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "出貨金額(未稅)";
}

public void Text29__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "退貨金額(未稅)";
}

public void Text11__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "客戶名稱";
}

public void Text15__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "出貨筆數";
}

public void Text8__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "退貨筆數";
}

public void Text6__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "批售合計(未稅)";
}

public void Text13__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "稅金";
}

public void Text20__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "批售總計(含稅)";
}

public void Text24__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "成本合計(未稅)";
}

public void Text26__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "毛利合計(未稅)";
}

public void Text1__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text1.TextFormat.Format(CheckExcelValue(sender, TmpSource1.WCSNO));
}

public void Text2__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text2.TextFormat.Format(CheckExcelValue(sender, TmpSource1.NAME));
}

public void Text3__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text3.TextFormat.Format(CheckExcelValue(sender, TmpSource1.OUCBSUM));
}

public void Text5__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text5.TextFormat.Format(CheckExcelValue(sender, TmpSource1.OUTOT));
}

public void Text7__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text7.TextFormat.Format(CheckExcelValue(sender, TmpSource1.BICBSUM));
}

public void Text14__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text14.TextFormat.Format(CheckExcelValue(sender, TmpSource1.BITOT));
}

public void Text16__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text16.TextFormat.Format(CheckExcelValue(sender, TmpSource1.CBSUM));
}

public void Text25__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text25.TextFormat.Format(CheckExcelValue(sender, TmpSource1.CBTAX));
}

public void Text27__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text27.TextFormat.Format(CheckExcelValue(sender, TmpSource1.CBTOT));
}

public void Text31__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text31.TextFormat.Format(CheckExcelValue(sender, TmpSource1.CBCST));
}

public void Text34__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = this.Text34.TextFormat.Format(CheckExcelValue(sender, TmpSource1.PROFIT));
}

public void HorizontalLine6_BeforePrint(object sender, System.EventArgs e)
{
if (Line%5 ==0)
{
HorizontalLine6.Enabled=true;
}
else
{
HorizontalLine6.Enabled=false;
};
}

public void Text37__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "總計:";
}

public void Text35__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum(Data1,TmpSource1.OUCBSUM)}";
e.StoreToPrinted = true;
}

public System.String Text35_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return this.Text35.TextFormat.Format(CheckExcelValue(sender, ((decimal)(StiReport.ChangeType(this.Text35_Sum.GetValue(), typeof(decimal), true)))));
}

public void Text36__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum(Data1,TmpSource1.BICBSUM)}";
e.StoreToPrinted = true;
}

public System.String Text36_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return this.Text36.TextFormat.Format(CheckExcelValue(sender, ((decimal)(StiReport.ChangeType(this.Text36_Sum.GetValue(), typeof(decimal), true)))));
}

public void Text39__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum(Data1,TmpSource1.OUTOT)}";
e.StoreToPrinted = true;
}

public System.String Text39_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return this.Text39.TextFormat.Format(CheckExcelValue(sender, ((decimal)(StiReport.ChangeType(this.Text39_Sum.GetValue(), typeof(decimal), true)))));
}

public void Text40__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum(Data1,TmpSource1.BITOT)}";
e.StoreToPrinted = true;
}

public System.String Text40_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return this.Text40.TextFormat.Format(CheckExcelValue(sender, ((decimal)(StiReport.ChangeType(this.Text40_Sum.GetValue(), typeof(decimal), true)))));
}

public void Text41__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum(Data1,TmpSource1.CBSUM)}";
e.StoreToPrinted = true;
}

public System.String Text41_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return this.Text41.TextFormat.Format(CheckExcelValue(sender, ((decimal)(StiReport.ChangeType(this.Text41_Sum.GetValue(), typeof(decimal), true)))));
}

public void Text43__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum(Data1,TmpSource1.CBTAX)}";
e.StoreToPrinted = true;
}

public System.String Text43_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return this.Text43.TextFormat.Format(CheckExcelValue(sender, ((decimal)(StiReport.ChangeType(this.Text43_Sum.GetValue(), typeof(decimal), true)))));
}

public void Text44__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum(Data1,TmpSource1.CBTOT)}";
e.StoreToPrinted = true;
}

public System.String Text44_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return this.Text44.TextFormat.Format(CheckExcelValue(sender, ((decimal)(StiReport.ChangeType(this.Text44_Sum.GetValue(), typeof(decimal), true)))));
}

public void Text45__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum(Data1,TmpSource1.CBCST)}";
e.StoreToPrinted = true;
}

public System.String Text45_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return this.Text45.TextFormat.Format(CheckExcelValue(sender, ((decimal)(StiReport.ChangeType(this.Text45_Sum.GetValue(), typeof(decimal), true)))));
}

public void Text42__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum(Data1,TmpSource1.PROFIT)}";
e.StoreToPrinted = true;
}

public System.String Text42_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return this.Text42.TextFormat.Format(CheckExcelValue(sender, ((decimal)(StiReport.ChangeType(this.Text42_Sum.GetValue(), typeof(decimal), true)))));
}

public void Data1__BeginRender(object sender, System.EventArgs e)
{
this.Text35_Sum.Init();
this.Text35.TextValue = "";
this.Text36_Sum.Init();
this.Text36.TextValue = "";
this.Text39_Sum.Init();
this.Text39.TextValue = "";
this.Text40_Sum.Init();
this.Text40.TextValue = "";
this.Text41_Sum.Init();
this.Text41.TextValue = "";
this.Text43_Sum.Init();
this.Text43.TextValue = "";
this.Text44_Sum.Init();
this.Text44.TextValue = "";
this.Text45_Sum.Init();
this.Text45.TextValue = "";
this.Text42_Sum.Init();
this.Text42.TextValue = "";
}

public void Data1__EndRender(object sender, System.EventArgs e)
{
this.Text35.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text35_GetValue_End));
this.Text36.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text36_GetValue_End));
this.Text39.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text39_GetValue_End));
this.Text40.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text40_GetValue_End));
this.Text41.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text41_GetValue_End));
this.Text43.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text43_GetValue_End));
this.Text44.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text44_GetValue_End));
this.Text45.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text45_GetValue_End));
this.Text42.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text42_GetValue_End));
}

public void Data1__Rendering(object sender, System.EventArgs e)
{
this.Text35_Sum.CalcItem(TmpSource1.OUCBSUM);
this.Text36_Sum.CalcItem(TmpSource1.BICBSUM);
this.Text39_Sum.CalcItem(TmpSource1.OUTOT);
this.Text40_Sum.CalcItem(TmpSource1.BITOT);
this.Text41_Sum.CalcItem(TmpSource1.CBSUM);
this.Text43_Sum.CalcItem(TmpSource1.CBTAX);
this.Text44_Sum.CalcItem(TmpSource1.CBTOT);
this.Text45_Sum.CalcItem(TmpSource1.CBCST);
this.Text42_Sum.CalcItem(TmpSource1.PROFIT);
}

public void ReportWordsToEnd__EndRender(object sender, System.EventArgs e)
{
this.Text19.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text19_GetValue_End));
}

private void InitializeComponent()
{
this.TmpSource1 = new TmpSource1DataSource();
this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "ReportTitle", "ReportTitle", "", typeof(string), "報表抬頭", false, false, false));
this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "ReportFooter", "ReportFooter", "", typeof(string), "製表人: 覆核人員:", false, false, false));
this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "PageFooter", "PageFooter", "", typeof(string), "", false, false, false));
this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "SDATE", "SDATE", "", typeof(string), "", false, false, false));
this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "SHOPNO", "SHOPNO", "", typeof(string), "", false, false, false));
this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "SORT", "SORT", "", typeof(string), "", false, false, false));
this.NeedsCompiling = false;
this.Text42_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
this.Text45_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
this.Text44_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
this.Text43_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
this.Text41_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
this.Text40_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
this.Text39_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
this.Text36_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
this.Text35_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
// Variables init
// Variables init
this.ReportTitle = "報表抬頭";
this.ReportFooter = "製表人: 覆核人員:";
this.PageFooter = "";
this.SDATE = "";
this.SHOPNO = "";
this.SORT = "";
this.EngineVersion = Stimulsoft.Report.Engine.StiEngineVersion.EngineV2;
this.ReferencedAssemblies = new System.String[] {
"System.Dll",
"System.Drawing.Dll",
"System.Windows.Forms.Dll",
"System.Data.Dll",
"System.Xml.Dll",
"Stimulsoft.Controls.Dll",
"Stimulsoft.Base.Dll",
"Stimulsoft.Report.Dll"};
this.ReportAlias = "Report";
//
// ReportChanged
//
this.ReportChanged = new DateTime(2011, 4, 28, 3, 8, 33, 724);
//
// ReportCreated
//
this.ReportCreated = new DateTime(2009, 5, 18, 10, 47, 55, 0);
this.ReportFile = "D:\\SourceCode\\STD2B\\Reports\\AHC01_1.mrt";
this.ReportGuid = "35820e18618f45918350953b399971b9";
this.ReportName = "Report";
this.ReportUnit = Stimulsoft.Report.StiReportUnitType.Centimeters;
this.ScriptLanguage = Stimulsoft.Report.StiReportLanguageType.CSharp;
//
// Page1
//
this.Page1 = new Stimulsoft.Report.Components.StiPage();
this.Page1.Guid = "a9e6a55d071946c08164f1650a308483";
this.Page1.Name = "Page1";
this.Page1.Orientation = Stimulsoft.Report.Components.StiPageOrientation.Landscape;
this.Page1.PageHeight = 21;
this.Page1.PageWidth = 29.7;
this.Page1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 2, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Page1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// PageHeader1
//
this.PageHeader1 = new Stimulsoft.Report.Components.StiPageHeaderBand();
this.PageHeader1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.4, 27.7, 2.5);
this.PageHeader1.Name = "PageHeader1";
this.PageHeader1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.PageHeader1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// Text23
//
this.Text23 = new Stimulsoft.Report.Components.StiText();
this.Text23.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.1, 0, 27.4, 0.8);
this.Text23.Guid = "f897800135f1424c88f004a8ef95ee93";
this.Text23.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text23.Name = "Text23";
this.Text23.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text23__GetValue);
this.Text23.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text23.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text23.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text23.Font = new System.Drawing.Font("細明體", 12F, System.Drawing.FontStyle.Bold);
this.Text23.Interaction = null;
this.Text23.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text23.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text23.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text66
//
this.Text66 = new Stimulsoft.Report.Components.StiText();
this.Text66.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.1, 0.7, 27.4, 0.9);
this.Text66.Guid = "683d9acd0f664e9eadf492d92a1eca32";
this.Text66.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text66.Name = "Text66";
this.Text66.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text66__GetValue);
this.Text66.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text66.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text66.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text66.Font = new System.Drawing.Font("細明體", 12F, System.Drawing.FontStyle.Bold);
this.Text66.Interaction = null;
this.Text66.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text66.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text66.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text9
//
this.Text9 = new Stimulsoft.Report.Components.StiText();
this.Text9.AutoWidth = true;
this.Text9.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.1, 2.1, 13.8, 0.4);
this.Text9.Guid = "5c269f26a8bf476d9d755f5e15fb37cd";
this.Text9.Name = "Text9";
this.Text9.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text9__GetValue);
this.Text9.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text9.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text9.Font = new System.Drawing.Font("細明體", 10F);
this.Text9.Interaction = null;
this.Text9.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text9.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text9.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text38
//
this.Text38 = new Stimulsoft.Report.Components.StiText();
this.Text38.AllowHtmlTags = true;
this.Text38.AutoWidth = true;
this.Text38.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(14.5, 2.1, 5.2, 0.4);
this.Text38.Guid = "feac6f83fb524facb563dbd04a477757";
this.Text38.Name = "Text38";
this.Text38.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text38__GetValue);
this.Text38.TextQuality = Stimulsoft.Report.Components.StiTextQuality.Wysiwyg;
this.Text38.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text38.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text38.Font = new System.Drawing.Font("細明體", 10F);
this.Text38.Interaction = null;
this.Text38.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text38.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text38.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text28
//
this.Text28 = new Stimulsoft.Report.Components.StiText();
this.Text28.AllowHtmlTags = true;
this.Text28.AutoWidth = true;
this.Text28.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.1, 1.7, 6.2, 0.4);
this.Text28.Guid = "2fcfb50c9e8649669ba9dbe5ad87af5e";
this.Text28.Name = "Text28";
this.Text28.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text28__GetValue);
this.Text28.TextQuality = Stimulsoft.Report.Components.StiTextQuality.Wysiwyg;
this.Text28.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text28.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text28.Font = new System.Drawing.Font("細明體", 10F);
this.Text28.Interaction = null;
this.Text28.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text28.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text28.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// HorizontalLine1
//
this.HorizontalLine1 = new Stimulsoft.Report.Components.StiHorizontalLinePrimitive();
this.HorizontalLine1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 1.6, 27.6, 0.0254);
this.HorizontalLine1.Color = System.Drawing.Color.Gray;
this.HorizontalLine1.Guid = "e3cea2803bf64b09a712341fd509359f";
this.HorizontalLine1.Name = "HorizontalLine1";
this.HorizontalLine1.Size = 2F;
this.HorizontalLine1.EndCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLine1.Interaction = null;
this.HorizontalLine1.StartCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
//
// HorizontalLine2
//
this.HorizontalLine2 = new Stimulsoft.Report.Components.StiHorizontalLinePrimitive();
this.HorizontalLine2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 2.5, 27.6, 0.0254);
this.HorizontalLine2.Color = System.Drawing.Color.Gray;
this.HorizontalLine2.Guid = "3f11ae19a1b54d3cad541443716a1472";
this.HorizontalLine2.Name = "HorizontalLine2";
this.HorizontalLine2.Size = 2F;
this.HorizontalLine2.EndCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLine2.Interaction = null;
this.HorizontalLine2.StartCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.PageHeader1.Guid = null;
this.PageHeader1.Interaction = null;
//
// PageFooter1
//
this.PageFooter1 = new Stimulsoft.Report.Components.StiPageFooterBand();
this.PageFooter1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 18.3, 27.7, 0.7);
this.PageFooter1.Name = "PageFooter1";
this.PageFooter1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.PageFooter1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// Text32
//
this.Text32 = new Stimulsoft.Report.Components.StiText();
this.Text32.AutoWidth = true;
this.Text32.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.1, 0.1, 9.2, 0.6);
this.Text32.Guid = "95817630f1b14906b91c29e67e6fd617";
this.Text32.Name = "Text32";
this.Text32.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text32__GetValue);
this.Text32.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text32.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text32.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text32.Font = new System.Drawing.Font("細明體", 9F);
this.Text32.Interaction = null;
this.Text32.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text32.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text32.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text33
//
this.Text33 = new Stimulsoft.Report.Components.StiText();
this.Text33.AutoWidth = true;
this.Text33.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.1, 0.1, 5.6, 0.5);
this.Text33.Guid = "8e8e7a77f614400ca569bbbc4acfdb29";
this.Text33.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text33.Name = "Text33";
this.Text33.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text33__GetValue);
this.Text33.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text33.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text33.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text33.Font = new System.Drawing.Font("細明體", 9F);
this.Text33.Interaction = null;
this.Text33.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text33.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text33.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text19
//
this.Text19 = new Stimulsoft.Report.Components.StiText();
this.Text19.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.6, 0.1, 10, 0.5);
this.Text19.Guid = "43cd1d978d4443a89ff8e9182222930d";
this.Text19.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text19.Name = "Text19";
this.Text19.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text19__GetValue);
this.Text19.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text19.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text19.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text19.Font = new System.Drawing.Font("細明體", 9F);
this.Text19.Interaction = null;
this.Text19.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text19.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text19.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
this.PageFooter1.Guid = null;
this.PageFooter1.Interaction = null;
//
// PageFooter2
//
this.PageFooter2 = new Stimulsoft.Report.Components.StiPageFooterBand();
this.PageFooter2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 16.7, 27.7, 0.8);
this.PageFooter2.Name = "PageFooter2";
this.PageFooter2.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.PageFooter2.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// Text30
//
this.Text30 = new Stimulsoft.Report.Components.StiText();
this.Text30.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.1, 0.2, 27.4, 0.5);
this.Text30.Guid = "32f1cc6caf344a0b8685ffcaf82733d5";
this.Text30.Name = "Text30";
this.Text30.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text30__GetValue);
this.Text30.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text30.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text30.Font = new System.Drawing.Font("細明體", 10F);
this.Text30.Interaction = null;
this.Text30.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text30.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text30.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// HorizontalLine3
//
this.HorizontalLine3 = new Stimulsoft.Report.Components.StiHorizontalLinePrimitive();
this.HorizontalLine3.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.1, 27.6, 0.0254);
this.HorizontalLine3.Color = System.Drawing.Color.Gray;
this.HorizontalLine3.Guid = "49f823e0468e40b4a93743b6e2c56604";
this.HorizontalLine3.Name = "HorizontalLine3";
this.HorizontalLine3.Size = 1.3F;
this.HorizontalLine3.EndCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLine3.Interaction = null;
this.HorizontalLine3.StartCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLine3.BeforePrint += new System.EventHandler(this.HorizontalLine3_BeforePrint);
this.PageFooter2.Guid = null;
this.PageFooter2.Interaction = null;
//
// PageFooter3
//
this.PageFooter3 = new Stimulsoft.Report.Components.StiPageFooterBand();
this.PageFooter3.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 15.2, 27.7, 0.7);
this.PageFooter3.Guid = "dfebcdfd5a674a309452824141838d79";
this.PageFooter3.Name = "PageFooter3";
this.PageFooter3.PrintOn = Stimulsoft.Report.Components.StiPrintOnType.OnlyLastPage;
this.PageFooter3.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.PageFooter3.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// Text12
//
this.Text12 = new Stimulsoft.Report.Components.StiText();
this.Text12.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.1, 0.2, 27.4, 0.4);
this.Text12.Guid = "a9ac8c496a5b4c9a9125b53a31a9748d";
this.Text12.Name = "Text12";
this.Text12.PrintOn = Stimulsoft.Report.Components.StiPrintOnType.OnlyLastPage;
this.Text12.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text12__GetValue);
this.Text12.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text12.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text12.Font = new System.Drawing.Font("細明體", 9F);
this.Text12.Interaction = null;
this.Text12.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text12.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text12.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// HorizontalLine4
//
this.HorizontalLine4 = new Stimulsoft.Report.Components.StiHorizontalLinePrimitive();
this.HorizontalLine4.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.1, 27.4, 0.0254);
this.HorizontalLine4.Color = System.Drawing.Color.Gray;
this.HorizontalLine4.Guid = "a779885af9794e38bc42f8b80092ac3d";
this.HorizontalLine4.Name = "HorizontalLine4";
this.HorizontalLine4.Size = 1.3F;
this.HorizontalLine4.EndCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLine4.Interaction = null;
this.HorizontalLine4.StartCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLine4.BeforePrint += new System.EventHandler(this.HorizontalLine4_BeforePrint);
this.PageFooter3.Interaction = null;
//
// Text17
//
this.Text17 = new Stimulsoft.Report.Components.StiText();
this.Text17.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.2, 27.8, 5.6, 0.5);
this.Text17.Guid = "b3b802f537c04847b32c81ecf048f9ba";
this.Text17.Name = "Text17";
this.Text17.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text17.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text17.Font = new System.Drawing.Font("細明體", 9F);
this.Text17.Interaction = null;
this.Text17.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text17.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text17.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text18
//
this.Text18 = new Stimulsoft.Report.Components.StiText();
this.Text18.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.8, 27.8, 2.6, 0.5);
this.Text18.Guid = "76086220f2e649bab5ead16b3e6303c7";
this.Text18.Name = "Text18";
this.Text18.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text18.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text18.Font = new System.Drawing.Font("細明體", 9F);
this.Text18.Interaction = null;
this.Text18.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text18.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text18.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 0, ",", 3, true, false, " ");
this.Text18.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text21
//
this.Text21 = new Stimulsoft.Report.Components.StiText();
this.Text21.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(32.7, 27.8, 4.5, 0.5);
this.Text21.Guid = "ad1f02dc54cc471d9c3791b1059ccc0e";
this.Text21.Name = "Text21";
this.Text21.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text21.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text21.Font = new System.Drawing.Font("細明體", 9F);
this.Text21.Interaction = null;
this.Text21.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text21.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text21.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text22
//
this.Text22 = new Stimulsoft.Report.Components.StiText();
this.Text22.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(30.4, 27.8, 2.3, 0.5);
this.Text22.Guid = "6453c88e2a584567922c1546e915d046";
this.Text22.Name = "Text22";
this.Text22.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text22.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text22.Font = new System.Drawing.Font("細明體", 9F);
this.Text22.Interaction = null;
this.Text22.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text22.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text22.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Header1
//
this.Header1 = new Stimulsoft.Report.Components.StiHeaderBand();
this.Header1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 3.7, 27.7, 0.7);
this.Header1.Name = "Header1";
this.Header1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Header1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// Text4
//
this.Text4 = new Stimulsoft.Report.Components.StiText();
this.Text4.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.1, 0.1, 2.1, 0.5);
this.Text4.Name = "Text4";
this.Text4.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text4__GetValue);
this.Text4.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text4.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text4.Font = new System.Drawing.Font("細明體", 10F);
this.Text4.Guid = null;
this.Text4.Interaction = null;
this.Text4.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text4.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text4.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text10
//
this.Text10 = new Stimulsoft.Report.Components.StiText();
this.Text10.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(5.1, 0.1, 2.7, 0.5);
this.Text10.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text10.Name = "Text10";
this.Text10.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text10__GetValue);
this.Text10.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text10.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text10.Font = new System.Drawing.Font("細明體", 10F);
this.Text10.Guid = null;
this.Text10.Interaction = null;
this.Text10.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text10.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text10.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text29
//
this.Text29 = new Stimulsoft.Report.Components.StiText();
this.Text29.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.6, 0.1, 2.7, 0.5);
this.Text29.Guid = "1db432dd6145466eacc3ce5d0097e02b";
this.Text29.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text29.Name = "Text29";
this.Text29.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text29__GetValue);
this.Text29.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text29.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text29.Font = new System.Drawing.Font("細明體", 10F);
this.Text29.Interaction = null;
this.Text29.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text29.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text29.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text11
//
this.Text11 = new Stimulsoft.Report.Components.StiText();
this.Text11.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(2.3, 0.1, 2.7, 0.5);
this.Text11.Guid = "43308e14d0fd482ab15a4d9069697551";
this.Text11.Name = "Text11";
this.Text11.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text11__GetValue);
this.Text11.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text11.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text11.Font = new System.Drawing.Font("細明體", 10F);
this.Text11.Interaction = null;
this.Text11.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text11.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text11.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text15
//
this.Text15 = new Stimulsoft.Report.Components.StiText();
this.Text15.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(8, 0.1, 1.5, 0.5);
this.Text15.Guid = "dcfab62400054c1187f372298867eb2b";
this.Text15.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text15.Name = "Text15";
this.Text15.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text15__GetValue);
this.Text15.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text15.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text15.Font = new System.Drawing.Font("細明體", 10F);
this.Text15.Interaction = null;
this.Text15.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text15.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text15.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text8
//
this.Text8 = new Stimulsoft.Report.Components.StiText();
this.Text8.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.4, 0.1, 1.5, 0.5);
this.Text8.Guid = "d99517769a8745d4a198aeadb1709c74";
this.Text8.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text8.Name = "Text8";
this.Text8.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text8__GetValue);
this.Text8.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text8.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text8.Font = new System.Drawing.Font("細明體", 10F);
this.Text8.Interaction = null;
this.Text8.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text8.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text8.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text6
//
this.Text6 = new Stimulsoft.Report.Components.StiText();
this.Text6.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(14, 0.1, 2.5, 0.5);
this.Text6.Guid = "7719b01c2b0d469b8b77fcd6494fece3";
this.Text6.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text6.Name = "Text6";
this.Text6.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text6__GetValue);
this.Text6.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text6.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text6.Font = new System.Drawing.Font("細明體", 10F);
this.Text6.Interaction = null;
this.Text6.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text6.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text6.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text13
//
this.Text13 = new Stimulsoft.Report.Components.StiText();
this.Text13.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.8, 0.1, 1.5, 0.5);
this.Text13.Guid = "27363159cc5d400180001f60503593b6";
this.Text13.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text13.Name = "Text13";
this.Text13.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text13__GetValue);
this.Text13.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text13.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text13.Font = new System.Drawing.Font("細明體", 10F);
this.Text13.Interaction = null;
this.Text13.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text13.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text13.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text20
//
this.Text20 = new Stimulsoft.Report.Components.StiText();
this.Text20.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.6, 0.1, 2.7, 0.5);
this.Text20.Guid = "42b37a219026467cb76fe6e3519239fc";
this.Text20.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text20.Name = "Text20";
this.Text20.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text20__GetValue);
this.Text20.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text20.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text20.Font = new System.Drawing.Font("細明體", 10F);
this.Text20.Interaction = null;
this.Text20.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text20.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text20.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text24
//
this.Text24 = new Stimulsoft.Report.Components.StiText();
this.Text24.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.8, 0.1, 2.7, 0.5);
this.Text24.Guid = "d1c11453555a43a2b76181bccf25ba20";
this.Text24.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text24.Name = "Text24";
this.Text24.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text24__GetValue);
this.Text24.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text24.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text24.Font = new System.Drawing.Font("細明體", 10F);
this.Text24.Interaction = null;
this.Text24.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text24.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text24.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text26
//
this.Text26 = new Stimulsoft.Report.Components.StiText();
this.Text26.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.8, 0.1, 2.7, 0.5);
this.Text26.Guid = "ceccc89de45d4140a567cb6784b7e81a";
this.Text26.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text26.Name = "Text26";
this.Text26.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text26__GetValue);
this.Text26.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.Bottom, System.Drawing.Color.Gray, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text26.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text26.Font = new System.Drawing.Font("細明體", 10F);
this.Text26.Interaction = null;
this.Text26.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text26.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text26.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
this.Header1.Guid = null;
this.Header1.Interaction = null;
//
// Data1
//
this.Data1 = new Stimulsoft.Report.Components.StiDataBand();
this.Data1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 5.2, 27.7, 0.6);
this.Data1.DataSourceName = "TmpSource1";
this.Data1.Name = "Data1";
this.Data1.Sort = new System.String[0];
this.Data1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Data1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Data1.BusinessObjectGuid = null;
//
// Text1
//
this.Text1 = new Stimulsoft.Report.Components.StiText();
this.Text1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0.1, 0, 2.1, 0.5);
this.Text1.Name = "Text1";
this.Text1.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text1__GetValue);
this.Text1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text1.Font = new System.Drawing.Font("細明體", 10F);
this.Text1.Guid = null;
this.Text1.Interaction = null;
this.Text1.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text1.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text1.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 0, ",", 3, true, true, " ");
this.Text1.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text2
//
this.Text2 = new Stimulsoft.Report.Components.StiText();
this.Text2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(2.2, 0, 3.3, 0.5);
this.Text2.Guid = "ba0b05a793b04046a702748954cc6922";
this.Text2.Name = "Text2";
this.Text2.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text2__GetValue);
this.Text2.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text2.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text2.Font = new System.Drawing.Font("細明體", 10F);
this.Text2.Interaction = null;
this.Text2.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text2.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text2.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 0, ",", 3, true, true, " ");
this.Text2.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text3
//
this.Text3 = new Stimulsoft.Report.Components.StiText();
this.Text3.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(5.2, 0, 2.7, 0.5);
this.Text3.Guid = "6bd179ecb065404e8f54baf613849d12";
this.Text3.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text3.Name = "Text3";
this.Text3.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text3__GetValue);
this.Text3.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text3.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text3.Font = new System.Drawing.Font("細明體", 10F);
this.Text3.Interaction = null;
this.Text3.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text3.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text3.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text3.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text5
//
this.Text5 = new Stimulsoft.Report.Components.StiText();
this.Text5.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.8, 0, 1.5, 0.5);
this.Text5.Guid = "27f7f81cf409491d9af7352836ba5ce2";
this.Text5.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text5.Name = "Text5";
this.Text5.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text5__GetValue);
this.Text5.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text5.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text5.Font = new System.Drawing.Font("細明體", 10F);
this.Text5.Interaction = null;
this.Text5.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text5.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text5.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 0, ",", 3, true, false, " ");
this.Text5.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text7
//
this.Text7 = new Stimulsoft.Report.Components.StiText();
this.Text7.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.2, 0, 2.9, 0.5);
this.Text7.Guid = "319e04d881af4c2abf463f1ede68a5c1";
this.Text7.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text7.Name = "Text7";
this.Text7.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text7__GetValue);
this.Text7.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text7.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text7.Font = new System.Drawing.Font("細明體", 10F);
this.Text7.Interaction = null;
this.Text7.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text7.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text7.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text7.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text14
//
this.Text14 = new Stimulsoft.Report.Components.StiText();
this.Text14.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.2, 0, 1.5, 0.5);
this.Text14.Guid = "5d9b2dda3113439c9601a8d32ad47206";
this.Text14.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text14.Name = "Text14";
this.Text14.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text14__GetValue);
this.Text14.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text14.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text14.Font = new System.Drawing.Font("細明體", 10F);
this.Text14.Interaction = null;
this.Text14.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text14.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text14.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 0, ",", 3, true, false, " ");
this.Text14.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text16
//
this.Text16 = new Stimulsoft.Report.Components.StiText();
this.Text16.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0, 2.9, 0.5);
this.Text16.Guid = "dfa944049a0c49798cdc1fdc4774fbe4";
this.Text16.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text16.Name = "Text16";
this.Text16.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text16__GetValue);
this.Text16.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text16.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text16.Font = new System.Drawing.Font("細明體", 10F);
this.Text16.Interaction = null;
this.Text16.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text16.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text16.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text16.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text25
//
this.Text25 = new Stimulsoft.Report.Components.StiText();
this.Text25.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.8, 0, 1.5, 0.5);
this.Text25.Guid = "0f4a9d4765cd4a15a637c265d6c126e3";
this.Text25.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text25.Name = "Text25";
this.Text25.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text25__GetValue);
this.Text25.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text25.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text25.Font = new System.Drawing.Font("細明體", 10F);
this.Text25.Interaction = null;
this.Text25.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text25.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text25.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text25.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text27
//
this.Text27 = new Stimulsoft.Report.Components.StiText();
this.Text27.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.6, 0, 2.7, 0.5);
this.Text27.Guid = "ecb7c05daae24588a2b1fb50e2a03862";
this.Text27.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text27.Name = "Text27";
this.Text27.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text27__GetValue);
this.Text27.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text27.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text27.Font = new System.Drawing.Font("細明體", 10F);
this.Text27.Interaction = null;
this.Text27.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text27.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text27.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text27.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text31
//
this.Text31 = new Stimulsoft.Report.Components.StiText();
this.Text31.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.6, 0, 2.9, 0.5);
this.Text31.Guid = "63d053b65fd445a48b8a930f7350e667";
this.Text31.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text31.Name = "Text31";
this.Text31.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text31__GetValue);
this.Text31.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text31.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text31.Font = new System.Drawing.Font("細明體", 10F);
this.Text31.Interaction = null;
this.Text31.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text31.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text31.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text31.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text34
//
this.Text34 = new Stimulsoft.Report.Components.StiText();
this.Text34.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.6, 0, 2.9, 0.5);
this.Text34.Guid = "75753a975d594d1ba25b1b72fe351ad2";
this.Text34.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text34.Name = "Text34";
this.Text34.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text34__GetValue);
this.Text34.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text34.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text34.Font = new System.Drawing.Font("細明體", 10F);
this.Text34.Interaction = null;
this.Text34.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text34.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text34.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text34.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// HorizontalLine6
//
this.HorizontalLine6 = new Stimulsoft.Report.Components.StiHorizontalLinePrimitive();
this.HorizontalLine6.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.5, 27.4, 0.0254);
this.HorizontalLine6.Color = System.Drawing.Color.Gray;
this.HorizontalLine6.Guid = "b3d1a6079275467982e399ea21e82441";
this.HorizontalLine6.Name = "HorizontalLine6";
this.HorizontalLine6.EndCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLine6.Interaction = null;
this.HorizontalLine6.StartCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLine6.BeforePrint += new System.EventHandler(this.HorizontalLine6_BeforePrint);
this.Data1.DataRelationName = null;
this.Data1.Guid = null;
this.Data1.Interaction = null;
this.Data1.MasterComponent = null;
//
// Footer1
//
this.Footer1 = new Stimulsoft.Report.Components.StiFooterBand();
this.Footer1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 6.6, 27.7, 0.7);
this.Footer1.Guid = "23868354f8fa47549cac4c9809b03a56";
this.Footer1.Name = "Footer1";
this.Footer1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Footer1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// Text37
//
this.Text37 = new Stimulsoft.Report.Components.StiText();
this.Text37.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.2, 2, 0.4);
this.Text37.Guid = "4e87c01872b74220b4ba4f13948628ad";
this.Text37.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text37.Name = "Text37";
this.Text37.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text37__GetValue);
this.Text37.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text37.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text37.Font = new System.Drawing.Font("細明體", 10F, System.Drawing.FontStyle.Bold);
this.Text37.Interaction = null;
this.Text37.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text37.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text37.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text35
//
this.Text35 = new Stimulsoft.Report.Components.StiText();
this.Text35.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(5, 0.2, 2.9, 0.4);
this.Text35.Guid = "53916b95e7354bf685cedda3e4227369";
this.Text35.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text35.Name = "Text35";
//
// Text35_Sum
//
this.Text35.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text35__GetValue);
this.Text35.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text35.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text35.Font = new System.Drawing.Font("細明體", 10F, System.Drawing.FontStyle.Bold);
this.Text35.Interaction = null;
this.Text35.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text35.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text35.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text35.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text36
//
this.Text36 = new Stimulsoft.Report.Components.StiText();
this.Text36.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.2, 0.2, 2.9, 0.4);
this.Text36.Guid = "0c1f66a255c943bd874cb94e52fd6648";
this.Text36.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text36.Name = "Text36";
//
// Text36_Sum
//
this.Text36.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text36__GetValue);
this.Text36.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text36.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text36.Font = new System.Drawing.Font("細明體", 10F, System.Drawing.FontStyle.Bold);
this.Text36.Interaction = null;
this.Text36.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text36.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text36.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text36.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text39
//
this.Text39 = new Stimulsoft.Report.Components.StiText();
this.Text39.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(7.7, 0.2, 1.5, 0.4);
this.Text39.Guid = "4c2ebe80843543c1862aa8589ca1385e";
this.Text39.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text39.Name = "Text39";
//
// Text39_Sum
//
this.Text39.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text39__GetValue);
this.Text39.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text39.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text39.Font = new System.Drawing.Font("細明體", 10F, System.Drawing.FontStyle.Bold);
this.Text39.Interaction = null;
this.Text39.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text39.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text39.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 0, ",", 3, true, false, " ");
this.Text39.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text40
//
this.Text40 = new Stimulsoft.Report.Components.StiText();
this.Text40.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.2, 0.2, 1.5, 0.4);
this.Text40.Guid = "07d8a7b57de24d73b5d2c59b94919866";
this.Text40.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text40.Name = "Text40";
//
// Text40_Sum
//
this.Text40.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text40__GetValue);
this.Text40.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text40.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text40.Font = new System.Drawing.Font("細明體", 10F, System.Drawing.FontStyle.Bold);
this.Text40.Interaction = null;
this.Text40.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text40.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text40.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 0, ",", 3, true, false, " ");
this.Text40.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text41
//
this.Text41 = new Stimulsoft.Report.Components.StiText();
this.Text41.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.6, 0.2, 2.9, 0.4);
this.Text41.Guid = "2dcf83bc2a7b4b2b8f84bada08aa3624";
this.Text41.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text41.Name = "Text41";
//
// Text41_Sum
//
this.Text41.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text41__GetValue);
this.Text41.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text41.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text41.Font = new System.Drawing.Font("細明體", 10F, System.Drawing.FontStyle.Bold);
this.Text41.Interaction = null;
this.Text41.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text41.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text41.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text41.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text43
//
this.Text43 = new Stimulsoft.Report.Components.StiText();
this.Text43.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(16.8, 0.2, 1.5, 0.4);
this.Text43.Guid = "9eb3540ab515432ebedd36a0252b0a29";
this.Text43.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text43.Name = "Text43";
//
// Text43_Sum
//
this.Text43.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text43__GetValue);
this.Text43.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text43.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text43.Font = new System.Drawing.Font("細明體", 10F, System.Drawing.FontStyle.Bold);
this.Text43.Interaction = null;
this.Text43.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text43.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text43.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text43.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text44
//
this.Text44 = new Stimulsoft.Report.Components.StiText();
this.Text44.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.4, 0.2, 2.9, 0.4);
this.Text44.Guid = "be74ffaea4a14039a6640035c36a9af1";
this.Text44.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text44.Name = "Text44";
//
// Text44_Sum
//
this.Text44.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text44__GetValue);
this.Text44.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text44.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text44.Font = new System.Drawing.Font("細明體", 10F, System.Drawing.FontStyle.Bold);
this.Text44.Interaction = null;
this.Text44.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text44.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text44.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text44.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text45
//
this.Text45 = new Stimulsoft.Report.Components.StiText();
this.Text45.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.6, 0.2, 2.9, 0.4);
this.Text45.Guid = "5527807a167b4539ad916f4386b522d8";
this.Text45.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text45.Name = "Text45";
//
// Text45_Sum
//
this.Text45.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text45__GetValue);
this.Text45.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text45.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text45.Font = new System.Drawing.Font("細明體", 10F, System.Drawing.FontStyle.Bold);
this.Text45.Interaction = null;
this.Text45.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text45.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text45.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text45.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text42
//
this.Text42 = new Stimulsoft.Report.Components.StiText();
this.Text42.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(24.6, 0.2, 2.9, 0.4);
this.Text42.Guid = "920b84ce42754e2a997936def0283fdd";
this.Text42.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text42.Name = "Text42";
//
// Text42_Sum
//
this.Text42.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text42__GetValue);
this.Text42.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text42.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text42.Font = new System.Drawing.Font("細明體", 10F, System.Drawing.FontStyle.Bold);
this.Text42.Interaction = null;
this.Text42.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text42.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text42.TextFormat = new Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, false, " ");
this.Text42.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// HorizontalLine5
//
this.HorizontalLine5 = new Stimulsoft.Report.Components.StiHorizontalLinePrimitive();
this.HorizontalLine5.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.1, 27.6, 0.0254);
this.HorizontalLine5.Color = System.Drawing.Color.Gray;
this.HorizontalLine5.Guid = "fc3ec0b1028a4af68ee5f21d485b036b";
this.HorizontalLine5.Name = "HorizontalLine5";
this.HorizontalLine5.Size = 2F;
this.HorizontalLine5.EndCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLine5.Interaction = null;
this.HorizontalLine5.StartCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.Footer1.Interaction = null;
this.Page1.ExcelSheetValue = null;
this.Page1.Interaction = null;
this.Page1.Margins = new Stimulsoft.Report.Components.StiMargins(1, 1, 1, 1);
this.Page1_Watermark = new Stimulsoft.Report.Components.StiWatermark();
this.Page1_Watermark.ShowBehind = true;
this.Page1_Watermark.Font = new System.Drawing.Font("Arial", 100F);
this.Page1_Watermark.Image = null;
this.Page1_Watermark.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.FromArgb(50, 0, 0, 0));
this.Report_PrinterSettings = new Stimulsoft.Report.Print.StiPrinterSettings();
this.PrinterSettings = this.Report_PrinterSettings;
this.Page1.Page = this.Page1;
this.Page1.Report = this;
this.Page1.Watermark = this.Page1_Watermark;
this.PageHeader1.Page = this.Page1;
this.PageHeader1.Parent = this.Page1;
this.Text23.Page = this.Page1;
this.Text23.Parent = this.PageHeader1;
this.InitializeComponent2();
}

public void InitializeComponent2()
{
this.Text66.Page = this.Page1;
this.Text66.Parent = this.PageHeader1;
this.Text9.Page = this.Page1;
this.Text9.Parent = this.PageHeader1;
this.Text38.Page = this.Page1;
this.Text38.Parent = this.PageHeader1;
this.Text28.Page = this.Page1;
this.Text28.Parent = this.PageHeader1;
this.HorizontalLine1.Page = this.Page1;
this.HorizontalLine1.Parent = this.PageHeader1;
this.HorizontalLine2.Page = this.Page1;
this.HorizontalLine2.Parent = this.PageHeader1;
this.PageFooter1.Page = this.Page1;
this.PageFooter1.Parent = this.Page1;
this.Text32.Page = this.Page1;
this.Text32.Parent = this.PageFooter1;
this.Text33.Page = this.Page1;
this.Text33.Parent = this.PageFooter1;
this.Text19.Page = this.Page1;
this.Text19.Parent = this.PageFooter1;
this.PageFooter2.Page = this.Page1;
this.PageFooter2.Parent = this.Page1;
this.Text30.Page = this.Page1;
this.Text30.Parent = this.PageFooter2;
this.HorizontalLine3.Page = this.Page1;
this.HorizontalLine3.Parent = this.PageFooter2;
this.PageFooter3.Page = this.Page1;
this.PageFooter3.Parent = this.Page1;
this.Text12.Page = this.Page1;
this.Text12.Parent = this.PageFooter3;
this.HorizontalLine4.Page = this.Page1;
this.HorizontalLine4.Parent = this.PageFooter3;
this.Text17.Page = this.Page1;
this.Text17.Parent = this.Page1;
this.Text18.Page = this.Page1;
this.Text18.Parent = this.Page1;
this.Text21.Page = this.Page1;
this.Text21.Parent = this.Page1;
this.Text22.Page = this.Page1;
this.Text22.Parent = this.Page1;
this.Header1.Page = this.Page1;
this.Header1.Parent = this.Page1;
this.Text4.Page = this.Page1;
this.Text4.Parent = this.Header1;
this.Text10.Page = this.Page1;
this.Text10.Parent = this.Header1;
this.Text29.Page = this.Page1;
this.Text29.Parent = this.Header1;
this.Text11.Page = this.Page1;
this.Text11.Parent = this.Header1;
this.Text15.Page = this.Page1;
this.Text15.Parent = this.Header1;
this.Text8.Page = this.Page1;
this.Text8.Parent = this.Header1;
this.Text6.Page = this.Page1;
this.Text6.Parent = this.Header1;
this.Text13.Page = this.Page1;
this.Text13.Parent = this.Header1;
this.Text20.Page = this.Page1;
this.Text20.Parent = this.Header1;
this.Text24.Page = this.Page1;
this.Text24.Parent = this.Header1;
this.Text26.Page = this.Page1;
this.Text26.Parent = this.Header1;
this.Data1.Page = this.Page1;
this.Data1.Parent = this.Page1;
this.Text1.Page = this.Page1;
this.Text1.Parent = this.Data1;
this.Text2.Page = this.Page1;
this.Text2.Parent = this.Data1;
this.Text3.Page = this.Page1;
this.Text3.Parent = this.Data1;
this.Text5.Page = this.Page1;
this.Text5.Parent = this.Data1;
this.Text7.Page = this.Page1;
this.Text7.Parent = this.Data1;
this.Text14.Page = this.Page1;
this.Text14.Parent = this.Data1;
this.Text16.Page = this.Page1;
this.Text16.Parent = this.Data1;
this.Text25.Page = this.Page1;
this.Text25.Parent = this.Data1;
this.Text27.Page = this.Page1;
this.Text27.Parent = this.Data1;
this.Text31.Page = this.Page1;
this.Text31.Parent = this.Data1;
this.Text34.Page = this.Page1;
this.Text34.Parent = this.Data1;
this.HorizontalLine6.Page = this.Page1;
this.HorizontalLine6.Parent = this.Data1;
this.Footer1.Page = this.Page1;
this.Footer1.Parent = this.Page1;
this.Text37.Page = this.Page1;
this.Text37.Parent = this.Footer1;
this.Text35.Page = this.Page1;
this.Text35.Parent = this.Footer1;
this.Text36.Page = this.Page1;
this.Text36.Parent = this.Footer1;
this.Text39.Page = this.Page1;
this.Text39.Parent = this.Footer1;
this.Text40.Page = this.Page1;
this.Text40.Parent = this.Footer1;
this.Text41.Page = this.Page1;
this.Text41.Parent = this.Footer1;
this.Text43.Page = this.Page1;
this.Text43.Parent = this.Footer1;
this.Text44.Page = this.Page1;
this.Text44.Parent = this.Footer1;
this.Text45.Page = this.Page1;
this.Text45.Parent = this.Footer1;
this.Text42.Page = this.Page1;
this.Text42.Parent = this.Footer1;
this.HorizontalLine5.Page = this.Page1;
this.HorizontalLine5.Parent = this.Footer1;
this.Data1.BeginRender += new System.EventHandler(this.Data1__BeginRender);
this.Data1.EndRender += new System.EventHandler(this.Data1__EndRender);
this.Data1.Rendering += new System.EventHandler(this.Data1__Rendering);
this.EndRender += new System.EventHandler(this.ReportWordsToEnd__EndRender);
this.AggregateFunctions = new object[] {
this.Text35_Sum,
this.Text36_Sum,
this.Text39_Sum,
this.Text40_Sum,
this.Text41_Sum,
this.Text43_Sum,
this.Text44_Sum,
this.Text45_Sum,
this.Text42_Sum};
//
// Add to PageHeader1.Components
//
this.PageHeader1.Components.Clear();
this.PageHeader1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Text23,
this.Text66,
this.Text9,
this.Text38,
this.Text28,
this.HorizontalLine1,
this.HorizontalLine2});
//
// Add to PageFooter1.Components
//
this.PageFooter1.Components.Clear();
this.PageFooter1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Text32,
this.Text33,
this.Text19});
//
// Add to PageFooter2.Components
//
this.PageFooter2.Components.Clear();
this.PageFooter2.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Text30,
this.HorizontalLine3});
//
// Add to PageFooter3.Components
//
this.PageFooter3.Components.Clear();
this.PageFooter3.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Text12,
this.HorizontalLine4});
//
// Add to Header1.Components
//
this.Header1.Components.Clear();
this.Header1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Text4,
this.Text10,
this.Text29,
this.Text11,
this.Text15,
this.Text8,
this.Text6,
this.Text13,
this.Text20,
this.Text24,
this.Text26});
//
// Add to Data1.Components
//
this.Data1.Components.Clear();
this.Data1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Text1,
this.Text2,
this.Text3,
this.Text5,
this.Text7,
this.Text14,
this.Text16,
this.Text25,
this.Text27,
this.Text31,
this.Text34,
this.HorizontalLine6});
//
// Add to Footer1.Components
//
this.Footer1.Components.Clear();
this.Footer1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Text37,
this.Text35,
this.Text36,
this.Text39,
this.Text40,
this.Text41,
this.Text43,
this.Text44,
this.Text45,
this.Text42,
this.HorizontalLine5});
//
// Add to Page1.Components
//
this.Page1.Components.Clear();
this.Page1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.PageHeader1,
this.PageFooter1,
this.PageFooter2,
this.PageFooter3,
this.Text17,
this.Text18,
this.Text21,
this.Text22,
this.Header1,
this.Data1,
this.Footer1});
//
// Add to Pages
//
this.Pages.Clear();
this.Pages.AddRange(new Stimulsoft.Report.Components.StiPage[] {
this.Page1});
this.TmpSource1.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
new Stimulsoft.Report.Dictionary.StiDataColumn("WCSNO", "WCSNO", "WCSNO", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NAME", "NAME", "NAME", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("OUCBSUM", "OUCBSUM", "OUCBSUM", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("OUTOT", "OUTOT", "OUTOT", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("BICBSUM", "BICBSUM", "BICBSUM", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("BITOT", "BITOT", "BITOT", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CBSUM", "CBSUM", "CBSUM", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CBTAX", "CBTAX", "CBTAX", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CBTOT", "CBTOT", "CBTOT", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CBCST", "CBCST", "CBCST", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PROFIT", "PROFIT", "PROFIT", typeof(decimal))});
this.DataSources.Add(this.TmpSource1);
this.Dictionary.Databases.Add(new Stimulsoft.Report.Dictionary.StiSqlDatabase("default", "default", "Password=1031;Persist Security Info=True;Data Source=SQL1\\SQL2005;Integrated Secu" +
"rity=False;Initial Catalog=RD_S2_STD;User ID=sa", false));
this.TmpSource1.Connecting += new System.EventHandler(this.GetTmpSource1_SqlCommand);
}

public void GetTmpSource1_SqlCommand(object sender, System.EventArgs e)
{
this.TmpSource1.SqlCommand = ToString(@"SELECT C.WCSNO
,W.NAME
,SUM(CASE C.CBTY WHEN 'OU' THEN ISNULL(C.CBSUM,0) ELSE 0 END) AS OUCBSUM --出貨金額
,SUM(CASE C.CBTY WHEN 'OU' THEN 1 ELSE 0 END) AS OUTOT --出貨筆數
,SUM(CASE C.CBTY WHEN 'BI' THEN ISNULL(C.CBSUM,0) ELSE 0 END) AS BICBSUM --退回金額
,SUM(CASE C.CBTY WHEN 'BI' THEN 1 ELSE 0 END) AS BITOT --退回筆數
,SUM(CASE C.CBTY WHEN 'OU' THEN ISNULL(C.CBSUM,0) ELSE 0 END) - SUM(CASE C.CBTY WHEN 'BI' THEN ISNULL(C.CBSUM,0) ELSE 0 END) AS CBSUM --批售合計(未稅)
,SUM(CASE C.CBTY WHEN 'OU' THEN ISNULL(C.CBTAX,0) ELSE 0 END) - SUM(CASE C.CBTY WHEN 'BI' THEN ISNULL(C.CBTAX,0) ELSE 0 END) AS CBTAX --稅金
,SUM(CASE C.CBTY WHEN 'OU' THEN ISNULL(C.CBTOT,0) ELSE 0 END) - SUM(CASE C.CBTY WHEN 'BI' THEN ISNULL(C.CBTOT,0) ELSE 0 END) AS CBTOT --批售總計(含稅)
,SUM(CASE C.CBTY WHEN 'OU' THEN ISNULL(C.CBCST,0) ELSE 0 END) - SUM(CASE C.CBTY WHEN 'BI' THEN ISNULL(C.CBCST,0) ELSE 0 END) AS CBCST --成本合計(未稅)
,SUM(CASE C.CBTY WHEN 'OU' THEN ISNULL(C.CBSUM,0) ELSE 0 END) - SUM(CASE C.CBTY WHEN 'BI' THEN ISNULL(C.CBSUM,0) ELSE 0 END)
-SUM(CASE C.CBTY WHEN 'OU' THEN ISNULL(C.CBCST,0) ELSE 0 END) - SUM(CASE C.CBTY WHEN 'BI' THEN ISNULL(C.CBCST,0) ELSE 0 END) AS PROFIT -- 毛利合計(未稅)

FROM CHGBKTOP C
LEFT JOIN CUST_WSL W ON C.WCSNO = W.WCSNO
WHERE (C.CBTY = 'OU' OR C.CBTY = 'BI') AND C.STATUS = 'OK'
GROUP BY C.WCSNO,W.NAME


");
}

#region DataSource TmpSource1
public class TmpSource1DataSource : Stimulsoft.Report.Dictionary.StiSqlSource
{

public TmpSource1DataSource() :
base("default", "TmpSource1", "TmpSource1", "", true, false, 30)
{
}

public virtual string WCSNO
{
get
{
return ((string)(StiReport.ChangeType(this["WCSNO"], typeof(string), true)));
}
}

public virtual string NAME
{
get
{
return ((string)(StiReport.ChangeType(this["NAME"], typeof(string), true)));
}
}

public virtual decimal OUCBSUM
{
get
{
return ((decimal)(StiReport.ChangeType(this["OUCBSUM"], typeof(decimal), true)));
}
}

public virtual int OUTOT
{
get
{
return ((int)(StiReport.ChangeType(this["OUTOT"], typeof(int), true)));
}
}

public virtual decimal BICBSUM
{
get
{
return ((decimal)(StiReport.ChangeType(this["BICBSUM"], typeof(decimal), true)));
}
}

public virtual int BITOT
{
get
{
return ((int)(StiReport.ChangeType(this["BITOT"], typeof(int), true)));
}
}

public virtual decimal CBSUM
{
get
{
return ((decimal)(StiReport.ChangeType(this["CBSUM"], typeof(decimal), true)));
}
}

public virtual decimal CBTAX
{
get
{
return ((decimal)(StiReport.ChangeType(this["CBTAX"], typeof(decimal), true)));
}
}

public virtual decimal CBTOT
{
get
{
return ((decimal)(StiReport.ChangeType(this["CBTOT"], typeof(decimal), true)));
}
}

public virtual decimal CBCST
{
get
{
return ((decimal)(StiReport.ChangeType(this["CBCST"], typeof(decimal), true)));
}
}

public virtual decimal PROFIT
{
get
{
return ((decimal)(StiReport.ChangeType(this["PROFIT"], typeof(decimal), true)));
}
}
}
#endregion DataSource TmpSource1
#endregion StiReport Designer generated code - do not modify
}
}
Ivan
Posts: 960
Joined: Thu Aug 10, 2006 1:37 am

How to shows the 2nd decimal place and the comma symbol?

Post by Ivan »

Hello,

Can you please send us a sample report template (not report code) with data, which reproduces the issue?

Thank you.
Post Reply