| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #pragma once
- #include "OTSImageScanParam.h"
- namespace OTSINTERFACE {
- using namespace System;
- using namespace OTSDATA;
- using namespace OTSMODEL;
- public ref class COTSImgScanPrmClr : public Object
- {
- public:
-
- COTSImgScanPrmClr(); // constructor
- COTSImgScanPrmClr(COTSImageScanParam*); // copy constructor
- COTSImgScanPrmClr(COTSImageScanParamPtr); // copy constructor
- !COTSImgScanPrmClr();
- ~COTSImgScanPrmClr();
-
- COTSImageScanParamPtr GetImgScanPrmPtr();
- // stop mode
- int GetStopMode();
- void SetStopMode(int a_nStopMode);
-
- bool GetShowStopMode();
- void SetShowStopMode(bool a_bShowStopMode);
- // measure time
- int GetStopParamMeasTime();
- void SetStopParamMeasTime(int a_nStopParamMeasTime);
- bool GetShowMeasTime();
- void SetShowMeasTime(bool a_bShowMeasTime);
- // field num
- int GetStopParamFields();
- void SetStopParamFields(int a_nStopParamFields);
- bool GetShowParamFields();
- void SetShowParamFields(bool a_bValue);
- // inclusion num
- int GetStopParamParticles();
- void SetStopParamParticles(int a_nStopParamParticles);
- bool GetShowParticles();
- void SetShowParticles(bool a_bValue);
- // get image mode
- int GetStartImageMode();
- void SetStartImageMode(int a_nSatrtImageMode);
- bool GetShowStartImageMode();
- void SetShowStartImageMode(bool a_bValue);
- // image size
- int GetImagePixelSize();
- void SetImagePixelSize(int a_nImagePixelSize);
- bool GetShowPixelSize();
- void SetShowPixelSize(bool a_bValue);
- // scan speed
- int GetScanImageSpeed();
- void SetScanImageSpeed(int a_nScanImageSpeed);
- bool GetShowImageSpeed();
- void SetShowImageSpeed(bool a_bValue);
- protected:
- COTSImageScanParamPtr* m_LpScanParam;
- };
- }
|