Documentation
 All Classes Functions Variables Properties
Scan.h
1 #pragma once
2 using namespace System;
3 namespace MST
4 {
5  namespace Imaging
6  {
7  namespace Scan
8  {
9 
10  ref class Scan
11  {
12  public:
13  Scan(void);
14 
19  void ScanImage(String^ bstSavePath);
20 
26  void ConnectDS(int nSourceId, int% nCapCount);
27 
32  void DefaultDS(PlugMSScanLib::MST_TW_IDENTITY pDefaultDS);
38  void SetCapability(int CapID, int CapValue);
39 
44  void GetAvailableSource(PlugMSScanLib::MST_TW_IDENTITY_LIST pSources);
45 
51  void GetCapability(int CapID, PlugMSScanLib::MST_TW_CAPABILITY pCap);
52 
58  void GetCapSetting(int nIdx, PlugMSScanLib::MST_TW_CAPABILITY_SETTING pCapSetting);
59 
60  };
61 
62  }
63  }
64 }
Definition: Scan.h:10