|
@@ -183,12 +183,7 @@ namespace OTSDataType
|
|
|
xString xnScanImageSpeed = new xString();
|
|
|
xString xnImageSize = new xString();
|
|
|
|
|
|
- xString xnFieldStopMode = new xString();
|
|
|
- xInt xnFieldAreaPercentage = new xInt();
|
|
|
- xInt xnFieldLargeParticles = new xInt();
|
|
|
- xInt xnFieldLargeParticlePercentage = new xInt();
|
|
|
- xInt xnFieldSmallParticles = new xInt();
|
|
|
- xInt xnFieldSmallParticlePercentage = new xInt();
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -203,12 +198,7 @@ namespace OTSDataType
|
|
|
slo.Register("ScanImageSpeed", xnScanImageSpeed);
|
|
|
slo.Register("ImageResolution", xnImageSize);
|
|
|
|
|
|
- slo.Register("FieldStopMode", xnFieldStopMode);
|
|
|
- slo.Register("FieldAreaPercentage", xnFieldAreaPercentage);
|
|
|
- slo.Register("FieldLargeParticles", xnFieldLargeParticles);
|
|
|
- slo.Register("FieldLargeParticlePercentage", xnFieldLargeParticlePercentage);
|
|
|
- slo.Register("FieldSmallParticles", xnFieldSmallParticles);
|
|
|
- slo.Register("FieldSmallParticlePercentage", xnFieldSmallParticlePercentage);
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -230,9 +220,7 @@ namespace OTSDataType
|
|
|
xnScanImageSpeed.AssignValue((int)m_nScanImageSpeed+":"+ m_nScanImageSpeed.ToString());
|
|
|
xnImageSize.AssignValue( (int)m_nImageResulotion+":"+m_nImageResulotion.ToString());
|
|
|
|
|
|
- xnFieldStopMode.AssignValue((int)m_nFieldStopMode+":"+m_nFieldStopMode.ToString());
|
|
|
- xnFieldSmallParticles.AssignValue(m_nFieldSmallParticles);
|
|
|
- xnFieldSmallParticlePercentage .AssignValue(m_nFieldSmallParticlesPercentage);
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -257,12 +245,7 @@ namespace OTSDataType
|
|
|
m_nScanImageSpeed = (OTS_IMAGE_SCANSPEED_OPTIONS)Convert.ToInt32(xnScanImageSpeed.value().Split(':')[0]);
|
|
|
m_nImageResulotion = (OTS_IMAGE_RESULOTION_OPTIONS)Convert.ToInt32(xnImageSize.value().Split(':')[0]);
|
|
|
|
|
|
- m_nFieldStopMode = (OTS_MEASURE_FIELD_STOP_MODE)Convert.ToInt32(xnFieldStopMode.value().Split(':')[0]);
|
|
|
- m_nFieldAreaPercentage = xnFieldAreaPercentage.value();
|
|
|
- m_nFieldLargeParticles = xnFieldLargeParticles.value();
|
|
|
- m_nFieldLargeParticlesPercentage = xnFieldLargeParticlePercentage.value();
|
|
|
- m_nFieldSmallParticles = xnFieldSmallParticles.value();
|
|
|
- m_nFieldSmallParticlesPercentage = xnFieldSmallParticlePercentage.value();
|
|
|
+
|
|
|
|
|
|
|
|
|
}
|