You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Whether to show the built-in User Interface from the device vendor.
55
-
*/
56
-
IfShowUI?:boolean;
57
-
/**
58
-
* How a pixel is represented. Basically it means whether to scan in color, grey or black & white
59
-
*/
60
-
PixelType?:Dynamsoft.DWT.EnumDWT_PixelType;
61
-
/**
62
-
* How detailed is the acquisition. Measured by dots per pixel (DPI)
63
-
*/
64
-
Resolution?:number;
65
-
/**
66
-
* Whether to use the document feeder or the flatbed of the device.
67
-
*/
68
-
IfFeederEnabled?:boolean;
69
-
/**
70
-
* Whether to scan one side or both sides of each paper.
71
-
*/
72
-
IfDuplexEnabled?:boolean;
73
-
/**
74
-
* Whether to close the built-in User Interface after aquisition. Only valid when {IfShowUI} is true.
75
-
*/
76
-
IfDisableSourceAfterAcquire?:boolean;
77
-
/**
78
-
* Whether to retrieve information about the image after it's transferred.
79
-
*/
80
-
IfGetImageInfo?:boolean;
81
-
/**
82
-
* Whether to retrieve extended information about the image after it's transferred.
83
-
*/
84
-
IfGetExtImageInfo?:boolean;
85
-
/**
86
-
* How much extended information is retrieved. Only valid when {IfGetExtImageInfo} is true.
87
-
*/
88
-
extendedImageInfoQueryLevel?:number;
89
-
/**
90
-
* Whether to simulate the manufacturer's UI inside the client-side browser (only effective when IfShowUI is true).
91
-
*/
92
-
RemoteScan?:boolean;
93
-
/**
94
-
* Whether to simulate the manufacturer's UI inside the client-side browser (only effective when IfShowUI and RemoteScan are both true and the WebTwain instance doing the scan has no viewer of its own).
95
-
*/
96
-
ShowRemoteScanUI?:boolean;
97
-
/**
98
-
* Specify a source by its index.
99
-
*/
100
-
SelectSourceByIndex?:number;
53
+
IfShowUI?:boolean; //Whether to show the built-in User Interface from the device vendor
54
+
PixelType?:Dynamsoft.DWT.EnumDWT_PixelType|number|string; //Whether to scan in color, grey or black & white
55
+
Resolution?:number; //Measured by dots per pixel (DPI)
56
+
IfFeederEnabled?:boolean; //Whether to use the document feeder or the flatbed of the device
57
+
IfDuplexEnabled?:boolean; //Whether to scan one side or both sides
58
+
IfDisableSourceAfterAcquire?:boolean; //Whether to close the built-in User Interface after aquisition. Only valid when {IfShowUI} is true.
59
+
IfGetImageInfo?:boolean; //Whether to retrieve information about the image after it's transferred.
60
+
IfGetExtImageInfo?:boolean; //Whether to retrieve extended information about the image after it's transferred.
61
+
extendedImageInfoQueryLevel?:Dynamsoft.DWT.EnumDWT_ExtImageInfo|number; //How much extended information is retrieved. Only valid when {IfGetExtImageInfo} is true.
62
+
SelectSourceByIndex?:number; //Specify a source by its index.
63
+
IfCloseSourceAfterAcquire?:boolean; //Whether to close the data source after aquisition. Default: false.
`deviceType`: Specify the device type of scanners. Please refer to [EnumDWT_DeviceType](({{{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_devicetype)).
838
+
`deviceType`: Specify the device type of scanners. Please refer to [EnumDWT_DeviceType]({{{site.info}}api/Dynamsoft_Enum.html#dynamsoftdwtenumdwt_devicetype).
0 commit comments