aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2022-05-02 16:49:31 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2022-05-02 16:49:31 +0300
commit643e13480ee25f02e8bf88a8d8e152780545bf3b (patch)
tree475e687705349d57df716be054412a074e6e6295 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel
parentc7d7c3cbd8f6a2b03301c69cbd7a9ee6d1edd858 (diff)
parent516438dede5ffce6f2685e85d2b793a604eebd72 (diff)
downloadTango-643e13480ee25f02e8bf88a8d8e152780545bf3b.tar.gz
Tango-643e13480ee25f02e8bf88a8d8e152780545bf3b.zip
merged vica jobs v2 fixes and ms rml extension fixes.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ColorCalibrationDataExcel.cs73
1 files changed, 73 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ColorCalibrationDataExcel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ColorCalibrationDataExcel.cs
new file mode 100644
index 000000000..0a5caa0b7
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ColorCalibrationDataExcel.cs
@@ -0,0 +1,73 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.MachineStudio.ThreadExtensions.Excel
+{
+ //Property Names should be the same as define names in excel file. Each define name should be unique by worksheet.
+ public class CyanColorCalibrationDataExcel
+ {
+ public double Ink_C { get; set; }
+ public double L_C { get; set; }
+ public double A_C { get; set; }
+ public double B_C { get; set; }
+ public double X_C { get; set; }
+ public double Y_C { get; set; }
+
+ public CyanColorCalibrationDataExcel()
+ {
+ Ink_C= 0;
+ L_C = A_C = B_C = X_C = Y_C = 0;
+ }
+ }
+
+ public class MagentaColorCalibrationDataExcel
+ {
+ public double Ink_M { get; set; }
+ public double L_M { get; set; }
+ public double A_M { get; set; }
+ public double B_M { get; set; }
+ public double X_M { get; set; }
+ public double Y_M { get; set; }
+
+ public MagentaColorCalibrationDataExcel()
+ {
+ Ink_M = 0;
+ L_M = A_M = B_M = X_M = Y_M = 0;
+ }
+ }
+
+ public class YellowColorCalibrationDataExcel
+ {
+ public double Ink_Y { get; set; }
+ public double L_Y { get; set; }
+ public double A_Y { get; set; }
+ public double B_Y { get; set; }
+ public double X_Y { get; set; }
+ public double Y_Y { get; set; }
+
+ public YellowColorCalibrationDataExcel()
+ {
+ Ink_Y = 0;
+ L_Y = A_Y = B_Y = X_Y = Y_Y = 0;
+ }
+ }
+
+ public class BlackColorCalibrationDataExcel
+ {
+ public double Ink_B { get; set; }
+ public double L_B { get; set; }
+ public double A_B { get; set; }
+ public double B_B { get; set; }
+ public double X_B { get; set; }
+ public double Y_B { get; set; }
+
+ public BlackColorCalibrationDataExcel()
+ {
+ Ink_B = 0;
+ L_B = A_B = B_B = X_B = Y_B = 0;
+ }
+ }
+}