|
@@ -197,12 +197,12 @@ namespace OTSIncAReportApp.ReportTemplate
|
|
|
|
|
|
XRTableCell Template_Rows_A_cell_data_X = new XRTableCell();
|
|
|
Template_Rows_A_cell_data_X.WidthF = 106.67f;
|
|
|
- Template_Rows_A_cell_data_X.Text = dt.Rows[index]["X/mm"].ToString();
|
|
|
+ Template_Rows_A_cell_data_X.Text = dt.Rows[index]["X/um"].ToString();
|
|
|
Template_Rows_A_Class_data.Controls.Add(Template_Rows_A_cell_data_X);
|
|
|
|
|
|
XRTableCell Template_Rows_A_cell_data_Y = new XRTableCell();
|
|
|
Template_Rows_A_cell_data_Y.WidthF = 106.67f;
|
|
|
- Template_Rows_A_cell_data_Y.Text = dt.Rows[index]["Y/mm"].ToString();
|
|
|
+ Template_Rows_A_cell_data_Y.Text = dt.Rows[index]["Y/um"].ToString();
|
|
|
Template_Rows_A_Class_data.Controls.Add(Template_Rows_A_cell_data_Y);
|
|
|
|
|
|
XRTableCell Template_Rows_A_cell_data_Grade = new XRTableCell();
|
|
@@ -251,8 +251,8 @@ namespace OTSIncAReportApp.ReportTemplate
|
|
|
HeaderData_DS.Columns.Add("No.");
|
|
|
HeaderData_DS.Columns.Add("Area/um2");
|
|
|
HeaderData_DS.Columns.Add("MaxFeret/um");
|
|
|
- HeaderData_DS.Columns.Add("X/mm");
|
|
|
- HeaderData_DS.Columns.Add("Y/mm");
|
|
|
+ HeaderData_DS.Columns.Add("X/um");
|
|
|
+ HeaderData_DS.Columns.Add("Y/um");
|
|
|
HeaderData_DS.Columns.Add("Grade");
|
|
|
|
|
|
|
|
@@ -260,8 +260,8 @@ namespace OTSIncAReportApp.ReportTemplate
|
|
|
dr_DS["No."] = "No.";
|
|
|
dr_DS["Area/um2"] = "Area/um2";
|
|
|
dr_DS["MaxFeret/um"] = "MaxFeret/um";
|
|
|
- dr_DS["X/mm"] = "X/mm";
|
|
|
- dr_DS["Y/mm"] = "Y/mm";
|
|
|
+ dr_DS["X/um"] = "X/um";
|
|
|
+ dr_DS["Y/um"] = "Y/um";
|
|
|
dr_DS["Grade"] = "Grade";
|
|
|
|
|
|
HeaderData_DS.Rows.Add(dr_DS);
|