-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathTwain32.cs
3067 lines (2717 loc) · 162 KB
/
Twain32.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Этот файл является частью библиотеки Saraff.Twain.NET
* © SARAFF SOFTWARE (Кирножицкий Андрей), 2011.
* Saraff.Twain.NET - свободная программа: вы можете перераспространять ее и/или
* изменять ее на условиях Меньшей Стандартной общественной лицензии GNU в том виде,
* в каком она была опубликована Фондом свободного программного обеспечения;
* либо версии 3 лицензии, либо (по вашему выбору) любой более поздней
* версии.
* Saraff.Twain.NET распространяется в надежде, что она будет полезной,
* но БЕЗО ВСЯКИХ ГАРАНТИЙ; даже без неявной гарантии ТОВАРНОГО ВИДА
* или ПРИГОДНОСТИ ДЛЯ ОПРЕДЕЛЕННЫХ ЦЕЛЕЙ. Подробнее см. в Меньшей Стандартной
* общественной лицензии GNU.
* Вы должны были получить копию Меньшей Стандартной общественной лицензии GNU
* вместе с этой программой. Если это не так, см.
* <http://www.gnu.org/licenses/>.)
*
* This file is part of Saraff.Twain.NET.
* © SARAFF SOFTWARE (Kirnazhytski Andrei), 2011.
* Saraff.Twain.NET is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Saraff.Twain.NET is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License
* along with Saraff.Twain.NET. If not, see <http://www.gnu.org/licenses/>.
*
* PLEASE SEND EMAIL TO: [email protected].
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.ComponentModel;
using System.Reflection;
using System.Drawing;
using System.Diagnostics;
using System.IO;
namespace Saraff.Twain {
/// <summary>
/// Provides the ability to work with TWAIN sources.
/// <para xml:lang="ru">Обеспечивает возможность работы с TWAIN-источниками.</para>
/// </summary>
[ToolboxBitmap(typeof(Twain32), "Resources.scanner.bmp")]
[DebuggerDisplay("ProductName = {_appid.ProductName.Value}, Version = {_appid.Version.Info}, DS = {_srcds.ProductName}")]
[DefaultEvent("AcquireCompleted")]
[DefaultProperty("AppProductName")]
public sealed class Twain32 : Component {
private _DsmEntry _dsmEntry;
private IntPtr _hTwainDll; //module descriptor twain_32.dll / дескриптор модуля twain_32.dll
private IContainer _components = new Container();
private IntPtr _hwnd; //handle to the parent window / дескриптор родительского окна.
private TwIdentity _appid; //application identifier / идентификатор приложения.
private TwIdentity _srcds; //identifier of the current data source / идентификатор текущего источника данных.
private _MessageFilter _filter; //WIN32 event filter / фильтр событий WIN32
private TwIdentity[] _sources = new TwIdentity[0]; //an array of available data sources / массив доступных источников данных.
private ApplicationContext _context = null; //application context. used if there is no main message processing cycle / контекст приложения. используется в случае отсутствия основного цикла обработки сообщений.
private Collection<_Image> _images = new Collection<_Image>();
private TwainStateFlag _twainState;
private bool _isTwain2Enable = IntPtr.Size != 4 || Environment.OSVersion.Platform == PlatformID.Unix || Environment.OSVersion.Platform == PlatformID.MacOSX;
private CallBackProc _callbackProc;
private TwainCapabilities _capabilities;
/// <summary>
/// Initializes a new instance of the <see cref="Twain32"/> class.
/// </summary>
public Twain32() {
this._srcds = new TwIdentity();
this._srcds.Id = 0;
this._filter = new _MessageFilter(this);
this.ShowUI = true;
this.DisableAfterAcquire = true;
this.Palette = new TwainPalette(this);
this._callbackProc = this._TwCallbackProc;
switch(Environment.OSVersion.Platform) {
case PlatformID.Unix:
case PlatformID.MacOSX:
break;
default:
Form _window = new Form();
this._components.Add(_window);
this._hwnd = _window.Handle;
break;
}
}
/// <summary>
/// Initializes a new instance of the <see cref="Twain32"/> class.
/// </summary>
/// <param name="container">The container.</param>
public Twain32(IContainer container) : this() {
container.Add(this);
}
/// <summary>
/// Releases the unmanaged resources used by the <see cref="T:System.ComponentModel.Component"/> and optionally releases the managed resources.
/// </summary>
/// <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
protected override void Dispose(bool disposing) {
if(disposing) {
this.CloseDSM();
switch(Environment.OSVersion.Platform) {
case PlatformID.Unix:
case PlatformID.MacOSX:
break;
default:
this._filter.Dispose();
break;
}
this._UnloadDSM();
if(this._components != null) {
this._components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// Opens the data source manager
/// <para xml:lang="ru">Открывает менеджер источников данных.</para>
/// </summary>
/// <returns>True if the operation was successful; otherwise, false.<para xml:lang="ru">Истина, если операция прошла удачно; иначе, лож.</para></returns>
public bool OpenDSM() {
if((this._TwainState & TwainStateFlag.DSMOpen) == 0) {
#region We load DSM, we receive the address of the entry point DSM_Entry and we bring it to the appropriate delegates / Загружаем DSM, получаем адрес точки входа DSM_Entry и приводим ее к соответствующим делегатам
switch(Environment.OSVersion.Platform) {
case PlatformID.Unix:
case PlatformID.MacOSX:
this._dsmEntry = _DsmEntry.Create(IntPtr.Zero);
try {
if(this._dsmEntry.DsmRaw == null) {
throw new InvalidOperationException("Can't load DSM.");
}
} catch(Exception ex) {
throw new TwainException("Can't load DSM.", ex);
}
break;
default:
string _twainDsm = Path.ChangeExtension(Path.Combine(Environment.SystemDirectory, "TWAINDSM"), ".dll");
this._hTwainDll = _Platform.Load(File.Exists(_twainDsm) && this.IsTwain2Enable ? _twainDsm : Path.ChangeExtension(Path.Combine(Environment.SystemDirectory, "..\\twain_32"), ".dll"));
if(this.Parent != null) {
this._hwnd = this.Parent.Handle;
}
if(this._hTwainDll != IntPtr.Zero) {
IntPtr _pDsmEntry = _Platform.GetProcAddr(this._hTwainDll, "DSM_Entry");
if(_pDsmEntry != IntPtr.Zero) {
this._dsmEntry = _DsmEntry.Create(_pDsmEntry);
_Memory._SetEntryPoints(null);
} else {
throw new TwainException("Can't find DSM_Entry entry point.");
}
} else {
throw new TwainException("Can't load DSM.");
}
break;
}
#endregion
for(TwRC _rc = this._dsmEntry.DsmParent(this._AppId, IntPtr.Zero, TwDG.Control, TwDAT.Parent, TwMSG.OpenDSM, ref this._hwnd); _rc != TwRC.Success;) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
this._TwainState |= TwainStateFlag.DSMOpen;
if(this.IsTwain2Supported) {
TwEntryPoint _entry = new TwEntryPoint();
for(TwRC _rc = this._dsmEntry.DsmInvoke(this._AppId, TwDG.Control, TwDAT.EntryPoint, TwMSG.Get, ref _entry); _rc != TwRC.Success;) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
_Memory._SetEntryPoints(_entry);
}
this._GetAllSorces();
}
return (this._TwainState & TwainStateFlag.DSMOpen) != 0;
}
/// <summary>
/// Displays a dialog box for selecting a data source.
/// <para xml:lang="ru">Отображает диалоговое окно для выбора источника данных.</para>
/// </summary>
/// <returns>True if the operation was successful; otherwise, false.<para xml:lang="ru">Истина, если операция прошла удачно; иначе, лож.</para></returns>
public bool SelectSource() {
if(Environment.OSVersion.Platform == PlatformID.Unix) {
throw new NotSupportedException("DG_CONTROL / DAT_IDENTITY / MSG_USERSELECT is not available on Linux.");
}
if((this._TwainState & TwainStateFlag.DSOpen) == 0) {
if((this._TwainState & TwainStateFlag.DSMOpen) == 0) {
this.OpenDSM();
if((this._TwainState & TwainStateFlag.DSMOpen) == 0) {
return false;
}
}
TwIdentity _src = new TwIdentity();
for(TwRC _rc = this._dsmEntry.DsmInvoke(this._AppId, TwDG.Control, TwDAT.Identity, TwMSG.UserSelect, ref _src); _rc != TwRC.Success;) {
if(_rc == TwRC.Cancel) {
return false;
}
throw new TwainException(this._GetTwainStatus(), _rc);
}
this._srcds = _src;
return true;
}
return false;
}
/// <summary>
/// Opens a data source.
/// <para xml:lang="ru">Открывает источник данных.</para>
/// </summary>
/// <returns>True if the operation was successful; otherwise, false.<para xml:lang="ru">Истина, если операция прошла удачно; иначе, лож.</para></returns>
public bool OpenDataSource() {
if((this._TwainState & TwainStateFlag.DSMOpen) != 0 && (this._TwainState & TwainStateFlag.DSOpen) == 0) {
for(TwRC _rc = this._dsmEntry.DsmInvoke(this._AppId, TwDG.Control, TwDAT.Identity, TwMSG.OpenDS, ref this._srcds); _rc != TwRC.Success;) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
this._TwainState |= TwainStateFlag.DSOpen;
switch(Environment.OSVersion.Platform) {
case PlatformID.Unix:
case PlatformID.MacOSX:
this._RegisterCallback();
break;
default:
if(this.IsTwain2Supported && (this._srcds.SupportedGroups & TwDG.DS2) != 0) {
this._RegisterCallback();
}
break;
}
}
return (this._TwainState & TwainStateFlag.DSOpen) != 0;
}
/// <summary>
/// Registers a data source event handler.
/// <para xml:lang="ru">Регестрирует обработчик событий источника данных.</para>
/// </summary>
private void _RegisterCallback() {
TwCallback2 _callback = new TwCallback2 {
CallBackProc = this._callbackProc
};
TwRC _rc = this._dsmEntry.DsInvoke(this._AppId, this._srcds, TwDG.Control, TwDAT.Callback2, TwMSG.RegisterCallback, ref _callback);
if(_rc != TwRC.Success) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
}
/// <summary>
/// Activates a data source.
/// <para xml:lang="ru">Активирует источник данных.</para>
/// </summary>
/// <returns>True if the operation was successful; otherwise, false.<para xml:lang="ru">Истина, если операция прошла удачно; иначе, лож.</para></returns>
private bool _EnableDataSource() {
if((this._TwainState & TwainStateFlag.DSOpen) != 0 && (this._TwainState & TwainStateFlag.DSEnabled) == 0) {
TwUserInterface _guif = new TwUserInterface() {
ShowUI = this.ShowUI,
ModalUI = this.ModalUI,
ParentHand = this._hwnd
};
for(TwRC _rc = this._dsmEntry.DsInvoke(this._AppId, this._srcds, TwDG.Control, TwDAT.UserInterface, TwMSG.EnableDS, ref _guif); _rc != TwRC.Success;) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
this.ModalUI = _guif.ModalUI;
if((this._TwainState & TwainStateFlag.DSReady) != 0) {
this._TwainState &= ~TwainStateFlag.DSReady;
} else {
this._TwainState |= TwainStateFlag.DSEnabled;
}
}
return (this._TwainState & TwainStateFlag.DSEnabled) != 0;
}
/// <summary>
/// Gets an image from a data source.
/// <para xml:lang="ru">Получает изображение с источника данных.</para>
/// </summary>
public void Acquire() {
if(this.OpenDSM()) {
if(this.OpenDataSource()) {
if(this._EnableDataSource()) {
switch(Environment.OSVersion.Platform) {
case PlatformID.Unix:
case PlatformID.MacOSX:
break;
default:
if(!this.IsTwain2Supported || (this._srcds.SupportedGroups & TwDG.DS2) == 0) {
this._filter.SetFilter();
}
if(!Application.MessageLoop) {
Application.Run(this._context = new ApplicationContext());
}
break;
}
}
}
}
}
/// <summary>
/// Deactivates the data source.
/// <para xml:lang="ru">Деактивирует источник данных.</para>
/// </summary>
/// <returns>True if the operation was successful; otherwise, false.<para xml:lang="ru">Истина, если операция прошла удачно; иначе, лож.</para></returns>
private bool _DisableDataSource() {
if((this._TwainState & TwainStateFlag.DSEnabled) != 0) {
try {
TwUserInterface _guif = new TwUserInterface() {
ParentHand = this._hwnd,
ShowUI = false
};
for(TwRC _rc = this._dsmEntry.DsInvoke(this._AppId, this._srcds, TwDG.Control, TwDAT.UserInterface, TwMSG.DisableDS, ref _guif); _rc != TwRC.Success;) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
} finally {
this._TwainState &= ~TwainStateFlag.DSEnabled;
if(this._context != null) {
this._context.ExitThread();
this._context.Dispose();
this._context = null;
}
}
return (this._TwainState & TwainStateFlag.DSEnabled) == 0;
}
return false;
}
/// <summary>
/// Closes the data source.
/// <para xml:lang="ru">Закрывает источник данных.</para>
/// </summary>
/// <returns>True if the operation was successful; otherwise, false.<para xml:lang="ru">Истина, если операция прошла удачно; иначе, лож.</para></returns>
public bool CloseDataSource() {
if((this._TwainState & TwainStateFlag.DSOpen) != 0 && (this._TwainState & TwainStateFlag.DSEnabled) == 0) {
this._images.Clear();
for(TwRC _rc = this._dsmEntry.DsmInvoke(this._AppId, TwDG.Control, TwDAT.Identity, TwMSG.CloseDS, ref this._srcds); _rc != TwRC.Success;) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
this._TwainState &= ~TwainStateFlag.DSOpen;
return (this._TwainState & TwainStateFlag.DSOpen) == 0;
}
return false;
}
/// <summary>
/// Closes the data source manager.
/// <para xml:lang="ru">Закрывает менежер источников данных.</para>
/// </summary>
/// <returns>True if the operation was successful; otherwise, false.<para xml:lang="ru">Истина, если операция прошла удачно; иначе, лож.</para></returns>
public bool CloseDSM() {
if((this._TwainState & TwainStateFlag.DSEnabled) != 0) {
this._DisableDataSource();
}
if((this._TwainState & TwainStateFlag.DSOpen) != 0) {
this.CloseDataSource();
}
if((this._TwainState & TwainStateFlag.DSMOpen) != 0 && (this._TwainState & TwainStateFlag.DSOpen) == 0) {
for(TwRC _rc = this._dsmEntry.DsmParent(this._AppId, IntPtr.Zero, TwDG.Control, TwDAT.Parent, TwMSG.CloseDSM, ref this._hwnd); _rc != TwRC.Success;) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
this._TwainState &= ~TwainStateFlag.DSMOpen;
this._UnloadDSM();
return (this._TwainState & TwainStateFlag.DSMOpen) == 0;
}
return false;
}
private void _UnloadDSM() {
this._AppId = null;
if(this._hTwainDll != IntPtr.Zero) {
_Platform.Unload(this._hTwainDll);
this._hTwainDll = IntPtr.Zero;
}
}
/// <summary>
/// Returns the scanned image.
/// <para xml:lang="ru">Возвращает отсканированое изображение.</para>
/// </summary>
/// <param name="index">Image index.<para xml:lang="ru">Индекс изображения.</para></param>
/// <returns>Instance of the image.<para xml:lang="ru">Экземпляр изображения.</para></returns>
public Image GetImage(int index) => this._images[index];
/// <summary>
/// Returns the number of scanned images.
/// <para xml:lang="ru">Возвращает количество отсканированных изображений.</para>
/// </summary>
[Browsable(false)]
public int ImageCount => this._images.Count;
/// <summary>
/// Gets or sets a value indicating the need to deactivate the data source after receiving the image.
/// <para xml:lang="ru">Возвращает или устанавливает значение, указывающее на необходимость деактивации источника данных после получения изображения.</para>
/// </summary>
[DefaultValue(true)]
[Category("Behavior")]
[Description("Gets or sets a value indicating the need to deactivate the data source after receiving the image. Возвращает или устанавливает значение, указывающее на необходимость деактивации источника данных после получения изображения.")]
public bool DisableAfterAcquire { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to use TWAIN 2.0.
/// <para xml:lang="ru">Возвращает или устанавливает значение, указывающее на необходимость использования TWAIN 2.0.</para>
/// </summary>
[DefaultValue(false)]
[Category("Behavior")]
[Description("Gets or sets a value indicating whether to use TWAIN 2.0. Возвращает или устанавливает значение, указывающее на необходимость использования TWAIN 2.0.")]
public bool IsTwain2Enable {
get {
return this._isTwain2Enable;
}
set {
if((this._TwainState & TwainStateFlag.DSMOpen) != 0) {
throw new InvalidOperationException("DSM already opened.");
}
if(IntPtr.Size != 4 && !value) {
throw new InvalidOperationException("In x64 mode only TWAIN 2.x enabled.");
}
if(Environment.OSVersion.Platform == PlatformID.Unix && !value) {
throw new InvalidOperationException("On UNIX platform only TWAIN 2.x enabled.");
}
if(Environment.OSVersion.Platform == PlatformID.MacOSX && !value) {
throw new InvalidOperationException("On MacOSX platform only TWAIN 2.x enabled.");
}
if(this._isTwain2Enable = value) {
this._AppId.SupportedGroups |= TwDG.APP2;
} else {
this._AppId.SupportedGroups &= ~TwDG.APP2;
}
this._AppId.ProtocolMajor = (ushort)(this._isTwain2Enable ? 2 : 1);
this._AppId.ProtocolMinor = (ushort)(this._isTwain2Enable ? 3 : 9);
}
}
/// <summary>
/// Returns true if DSM supports TWAIN 2.0; otherwise false.
/// <para xml:lang="ru">Возвращает истину, если DSM поддерживает TWAIN 2.0; иначе лож.</para>
/// </summary>
[Browsable(false)]
public bool IsTwain2Supported {
get {
if((this._TwainState & TwainStateFlag.DSMOpen) == 0) {
throw new InvalidOperationException("DSM is not open.");
}
return (this._AppId.SupportedGroups & TwDG.DSM2) != 0;
}
}
#region Information of sorces
/// <summary>
/// Gets or sets the index of the current data source.
/// <para xml:lang="ru">Возвращает или устанавливает индекс текущего источника данных.</para>
/// </summary>
[Browsable(false)]
[ReadOnly(true)]
public int SourceIndex {
get {
if((this._TwainState & TwainStateFlag.DSMOpen) != 0) {
int i;
for(i = 0; i < this._sources.Length; i++) {
if(this._sources[i].Equals(this._srcds)) {
break;
}
}
return i;
} else {
return -1;
}
}
set {
if((this._TwainState & TwainStateFlag.DSMOpen) != 0) {
if((this._TwainState & TwainStateFlag.DSOpen) == 0) {
this._srcds = this._sources[value];
} else {
throw new TwainException("The data source is already open. Источник данных уже открыт.");
}
} else {
throw new TwainException("Data Source Manager is not open. Менеджер источников данных не открыт.");
}
}
}
/// <summary>
/// Returns the number of data sources.
/// <para xml:lang="ru">Возвращает количество источников данных.</para>
/// </summary>
[Browsable(false)]
public int SourcesCount => this._sources.Length;
/// <summary>
/// Returns the name of the data source at the specified index.
/// <para xml:lang="ru">Возвращает имя источника данных по указанному индексу.</para>
/// </summary>
/// <param name="index">Index.<para xml:lang="ru">Индекс.</para></param>
/// <returns>The name of the data source.<para xml:lang="ru">Имя источника данных.</para></returns>
public string GetSourceProductName(int index) => this._sources[index].ProductName;
/// <summary>
/// Gets a description of the specified source.
/// <para xml:lang="ru">Возвращает описание указанного источника. Gets the source identity.</para>
/// </summary>
/// <param name="index">Index.<para xml:lang="ru">Индекс. The index.</para></param>
/// <returns>Description of the data source.<para xml:lang="ru">Описание источника данных.</para></returns>
public Identity GetSourceIdentity(int index) => new Identity(this._sources[index]);
/// <summary>
/// Returns true if the specified source supports TWAIN 2.0; otherwise false.
/// <para xml:lang="ru">Возвращает истину, если указанный источник поддерживает TWAIN 2.0; иначе лож.</para>
/// </summary>
/// <param name="index">Index<para xml:lang="ru">Индекс.</para></param>
/// <returns>True if the specified source supports TWAIN 2.0; otherwise false.<para xml:lang="ru">Истина, если указанный источник поддерживает TWAIN 2.0; иначе лож.</para></returns>
public bool GetIsSourceTwain2Compatible(int index) => (this._sources[index].SupportedGroups & TwDG.DS2) != 0;
/// <summary>
/// Sets the specified data source as the default data source.
/// <para xml:lang="ru">Устанавливает указанный источник данных в качестве источника данных по умолчанию.</para>
/// </summary>
/// <param name="index">Index.<para xml:lang="ru">Индекс.</para></param>
public void SetDefaultSource(int index) {
if((this._TwainState & TwainStateFlag.DSMOpen) != 0) {
if((this._TwainState & TwainStateFlag.DSOpen) == 0) {
TwIdentity _src = this._sources[index];
TwRC _rc = this._dsmEntry.DsmInvoke(this._AppId, TwDG.Control, TwDAT.Identity, TwMSG.Set, ref _src);
if(_rc != TwRC.Success) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
} else {
throw new TwainException("The data source is already open. You must first close the data source. Источник данных уже открыт. Необходимо сперва закрыть источник данных.");
}
} else {
throw new TwainException("DSM is not open. DSM не открыт.");
}
}
/// <summary>
/// Gets the default Data Source.
/// </summary>
/// <returns>Index of default Data Source.</returns>
/// <exception cref="TwainException">
/// Не удалось найти источник данных по умолчанию.
/// or
/// DSM не открыт.
/// </exception>
public int GetDefaultSource() {
if((this._TwainState & TwainStateFlag.DSMOpen) != 0) {
TwIdentity _identity = new TwIdentity();
for(TwRC _rc = this._dsmEntry.DsmInvoke(this._AppId, TwDG.Control, TwDAT.Identity, TwMSG.GetDefault, ref _identity); _rc != TwRC.Success;) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
for(var i = 0; i < this._sources.Length; i++) {
if(_identity.Id == this._sources[i].Id) {
return i;
}
}
throw new TwainException("Could not find default data source. Не удалось найти источник данных по умолчанию.");
} else {
throw new TwainException("DSM is not open. DSM не открыт.");
}
}
#endregion
#region Properties of source
/// <summary>
/// Gets the application identifier.
/// <para xml:lang="ru">Возвращает идентификатор приложения.</para>
/// </summary>
[Browsable(false)]
[ReadOnly(true)]
private TwIdentity _AppId {
get {
if(this._appid == null) {
Assembly _asm = typeof(Twain32).Assembly;
AssemblyName _asm_name = new AssemblyName(_asm.FullName);
Version _version = new Version(((AssemblyFileVersionAttribute)_asm.GetCustomAttributes(typeof(AssemblyFileVersionAttribute), false)[0]).Version);
this._appid = new TwIdentity() {
Id = 0,
Version = new TwVersion() {
MajorNum = (ushort)_version.Major,
MinorNum = (ushort)_version.Minor,
Language = TwLanguage.RUSSIAN,
Country = TwCountry.BELARUS,
Info = _asm_name.Version.ToString()
},
ProtocolMajor = (ushort)(this._isTwain2Enable ? 2 : 1),
ProtocolMinor = (ushort)(this._isTwain2Enable ? 3 : 9),
SupportedGroups = TwDG.Image | TwDG.Control | (this._isTwain2Enable ? TwDG.APP2 : 0),
Manufacturer = ((AssemblyCompanyAttribute)_asm.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false)[0]).Company,
ProductFamily = "TWAIN Class Library",
ProductName = ((AssemblyProductAttribute)_asm.GetCustomAttributes(typeof(AssemblyProductAttribute), false)[0]).Product
};
}
return this._appid;
}
set {
if(value != null) {
throw new ArgumentException("Is read only property.");
}
this._appid = null;
}
}
/// <summary>
/// Gets or sets the name of the application.
/// <para xml:lang="ru">Возвращает или устанавливает имя приложения.</para>
/// </summary>
[Category("Behavior")]
[Description("Gets or sets the name of the application. Возвращает или устанавливает имя приложения.")]
public string AppProductName {
get {
return this._AppId.ProductName;
}
set {
this._AppId.ProductName = value;
}
}
/// <summary>
/// Gets or sets a value indicating whether to display the UI of the TWAIN source.
/// <para xml:lang="ru">Возвращает или устанавливает значение указывающие на необходимость отображения UI TWAIN-источника.</para>
/// </summary>
[Category("Behavior")]
[DefaultValue(true)]
[Description("Gets or sets a value indicating whether to display the UI of the TWAIN source. Возвращает или устанавливает значение указывающие на необходимость отображения UI TWAIN-источника.")]
public bool ShowUI { get; set; }
[Category("Behavior")]
[DefaultValue(false)]
public bool ModalUI { get; set; }
/// <summary>
/// Gets or sets the parent window for the TWAIN source.
/// <para xml:lang="ru">Возвращает или устанавливает родительское окно для TWAIN-источника.</para>
/// </summary>
/// <value>
/// Окно.
/// </value>
[Category("Behavior")]
[DefaultValue(false)]
[Description("Gets or sets the parent window for the TWAIN source. Возвращает или устанавливает родительское окно для TWAIN-источника.")]
public IWin32Window Parent { get; set; }
/// <summary>
/// Get or set the primary language for your application.
/// <para xml:lang="ru">Возвращает или устанавливает используемый приложением язык.</para>
/// </summary>
[Category("Culture")]
[DefaultValue(TwLanguage.RUSSIAN)]
[Description("Get or set the primary language for your application. Возвращает или устанавливает используемый приложением язык.")]
public TwLanguage Language {
get {
return this._AppId.Version.Language;
}
set {
this._AppId.Version.Language = value;
}
}
/// <summary>
/// Get or set the primary country where your application is intended to be distributed.
/// <para xml:lang="ru">Возвращает или устанавливает страну происхождения приложения.</para>
/// </summary>
[Category("Culture")]
[DefaultValue(TwCountry.BELARUS)]
[Description("Get or set the primary country where your application is intended to be distributed. Возвращает или устанавливает страну происхождения приложения.")]
public TwCountry Country {
get {
return this._AppId.Version.Country;
}
set {
this._AppId.Version.Country = value;
}
}
/// <summary>
/// Gets or sets the frame of the physical location of the image.
/// <para xml:lang="ru">Возвращает или устанавливает кадр физического расположения изображения.</para>
/// </summary>
[Browsable(false)]
[ReadOnly(true)]
public RectangleF ImageLayout {
get {
TwImageLayout _imageLayout = new TwImageLayout();
TwRC _rc = this._dsmEntry.DsInvoke(this._AppId, this._srcds, TwDG.Image, TwDAT.ImageLayout, TwMSG.Get, ref _imageLayout);
if(_rc != TwRC.Success) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
return _imageLayout.Frame;
}
set {
TwImageLayout _imageLayout = new TwImageLayout { Frame = value };
TwRC _rc = this._dsmEntry.DsInvoke(this._AppId, this._srcds, TwDG.Image, TwDAT.ImageLayout, TwMSG.Set, ref _imageLayout);
if(_rc != TwRC.Success) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
}
}
/// <summary>
/// Returns a set of capabilities (Capabilities).
/// <para xml:lang="ru">Возвращает набор возможностей (Capabilities).</para>
/// </summary>
[Browsable(false)]
[ReadOnly(true)]
public TwainCapabilities Capabilities {
get {
if(this._capabilities == null) {
this._capabilities = new TwainCapabilities(this);
}
return this._capabilities;
}
}
/// <summary>
/// Returns a set of operations for working with a color palette.
/// <para xml:lang="ru">Возвращает набор операций для работы с цветовой палитрой.</para>
/// </summary>
[Browsable(false)]
[ReadOnly(true)]
public TwainPalette Palette { get; private set; }
#endregion
#region All capabilities
/// <summary>
/// Returns flags indicating operations supported by the data source for the specified capability value.
/// <para xml:lang="ru">Возвращает флаги, указывающие на поддерживаемые источником данных операции, для указанного значения capability.</para>
/// </summary>
/// <param name="capability">The value of the TwCap enumeration.<para xml:lang="ru">Значение перечисдения TwCap.</para></param>
/// <returns>Set of flags.<para xml:lang="ru">Набор флагов.</para></returns>
/// <exception cref="TwainException">Возбуждается в случае возникновения ошибки во время операции.</exception>
public TwQC IsCapSupported(TwCap capability) {
if((this._TwainState & TwainStateFlag.DSOpen) != 0) {
TwCapability _cap = new TwCapability(capability);
try {
TwRC _rc = this._dsmEntry.DsInvoke(this._AppId, this._srcds, TwDG.Control, TwDAT.Capability, TwMSG.QuerySupport, ref _cap);
if(_rc == TwRC.Success) {
return (TwQC)((TwOneValue)_cap.GetValue()).Item;
}
return 0;
} finally {
_cap.Dispose();
}
} else {
throw new TwainException("The data source is not open. Источник данных не открыт.");
}
}
/// <summary>
/// Returns the value for the specified capability.
/// <para xml:lang="ru">Возвращает значение для указанного capability (возможность).</para>
/// </summary>
/// <param name="capability">The value of the TwCap enumeration.<para xml:lang="ru">Значение перечисления TwCap.</para></param>
/// <param name="msg">The value of the TwMSG enumeration.<para xml:lang="ru">Значение перечисления TwMSG.</para></param>
/// <returns>Depending on the value of capability, the following can be returned: type-value, array, <see cref="Twain32.Range">range</see>, <see cref="Twain32.Enumeration">transfer</see>.<para xml:lang="ru">В зависимости от значение capability, могут быть возвращены: тип-значение, массив, <see cref="Twain32.Range">диапазон</see>, <see cref="Twain32.Enumeration">перечисление</see>.</para></returns>
/// <exception cref="TwainException">Возбуждается в случае возникновения ошибки во время операции.</exception>
private object _GetCapCore(TwCap capability, TwMSG msg) {
if((this._TwainState & TwainStateFlag.DSOpen) != 0) {
TwCapability _cap = new TwCapability(capability);
try {
TwRC _rc = this._dsmEntry.DsInvoke(this._AppId, this._srcds, TwDG.Control, TwDAT.Capability, msg, ref _cap);
if(_rc == TwRC.Success) {
switch(_cap.ConType) {
case TwOn.One:
object _valueRaw = _cap.GetValue();
TwOneValue _value = _valueRaw as TwOneValue;
if(_value != null) {
return TwTypeHelper.CastToCommon(_value.ItemType, TwTypeHelper.ValueToTw<uint>(_value.ItemType, _value.Item));
} else {
return _valueRaw;
}
case TwOn.Range:
return Range.CreateRange((TwRange)_cap.GetValue());
case TwOn.Array:
return ((__ITwArray)_cap.GetValue()).Items;
case TwOn.Enum:
__ITwEnumeration _enum = _cap.GetValue() as __ITwEnumeration;
return Enumeration.CreateEnumeration(_enum.Items, _enum.CurrentIndex, _enum.DefaultIndex);
}
return _cap.GetValue();
} else {
throw new TwainException(this._GetTwainStatus(), _rc);
}
} finally {
_cap.Dispose();
}
} else {
throw new TwainException("The data source is not open. Источник данных не открыт.");
}
}
/// <summary>
/// Gets the values of the specified feature (capability).
/// <para xml:lang="ru">Возвращает значения указанной возможности (capability).</para>
/// </summary>
/// <param name="capability">The value of the TwCap enumeration.<para xml:lang="ru">Значение перечисления TwCap.</para></param>
/// <returns>Depending on the value of capability, the following can be returned: type-value, array, <see cref="Twain32.Range">range</see>, <see cref="Twain32.Enumeration">transfer</see>.<para xml:lang="ru">В зависимости от значение capability, могут быть возвращены: тип-значение, массив, <see cref="Twain32.Range">диапазон</see>, <see cref="Twain32.Enumeration">перечисление</see>.</para></returns>
/// <exception cref="TwainException">Возбуждается в случае возникновения ошибки во время операции.</exception>
public object GetCap(TwCap capability) => this._GetCapCore(capability, TwMSG.Get);
/// <summary>
/// Returns the current value for the specified feature. (capability).
/// <para xml:lang="ru">Возвращает текущее значение для указанной возможности (capability).</para>
/// </summary>
/// <param name="capability">The value of the TwCap enumeration.<para xml:lang="ru">Значение перечисления TwCap.</para></param>
/// <returns>Depending on the value of capability, the following can be returned: type-value, array, <see cref="Twain32.Range">range</see>, <see cref="Twain32.Enumeration">transfer</see>.<para xml:lang="ru">В зависимости от значение capability, могут быть возвращены: тип-значение, массив, <see cref="Twain32.Range">диапазон</see>, <see cref="Twain32.Enumeration">перечисление</see>.</para></returns>
/// <exception cref="TwainException">Возбуждается в случае возникновения ошибки во время операции.</exception>
public object GetCurrentCap(TwCap capability) => this._GetCapCore(capability, TwMSG.GetCurrent);
/// <summary>
/// Returns the default value for the specified feature. (capability).
/// <para xml:lang="ru">Возвращает значение по умолчанию для указанной возможности (capability).</para>
/// </summary>
/// <param name="capability">The value of the TwCap enumeration.<para xml:lang="ru">Значение перечисления TwCap.</para></param>
/// <returns>Depending on the value of capability, the following can be returned: type-value, array, <see cref="Twain32.Range">range</see>, <see cref="Twain32.Enumeration">transfer</see>.<para xml:lang="ru">В зависимости от значение capability, могут быть возвращены: тип-значение, массив, <see cref="Twain32.Range">диапазон</see>, <see cref="Twain32.Enumeration">перечисление</see>.</para></returns>
/// <exception cref="TwainException">Возбуждается в случае возникновения ошибки во время операции.</exception>
public object GetDefaultCap(TwCap capability) => this._GetCapCore(capability, TwMSG.GetDefault);
/// <summary>
/// Resets the current value for the specified <see cref="TwCap">capability</see> to default value.
/// <para xml:lang="ru">Сбрасывает текущее значение для указанного <see cref="TwCap">capability</see> в значение по умолчанию.</para>
/// </summary>
/// <param name="capability">Listing Value <see cref="TwCap"/>.<para xml:lang="ru">Значение перечисления <see cref="TwCap"/>.</para></param>
/// <exception cref="TwainException">Возбуждается в случае возникновения ошибки во время операции.</exception>
public void ResetCap(TwCap capability) {
if((this._TwainState & TwainStateFlag.DSOpen) != 0) {
TwCapability _cap = new TwCapability(capability);
try {
TwRC _rc = this._dsmEntry.DsInvoke(this._AppId, this._srcds, TwDG.Control, TwDAT.Capability, TwMSG.Reset, ref _cap);
if(_rc != TwRC.Success) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
} finally {
_cap.Dispose();
}
} else {
throw new TwainException("The data source is not open. Источник данных не открыт.");
}
}
/// <summary>
/// Resets the current value of all current values to the default values.
/// <para xml:lang="ru">Сбрасывает текущее значение всех текущих значений в значения по умолчанию.</para>
/// </summary>
/// <exception cref="TwainException">Возбуждается в случае возникновения ошибки во время операции.</exception>
public void ResetAllCap() {
if((this._TwainState & TwainStateFlag.DSOpen) != 0) {
TwCapability _cap = new TwCapability(TwCap.SupportedCaps);
try {
TwRC _rc = this._dsmEntry.DsInvoke(this._AppId, this._srcds, TwDG.Control, TwDAT.Capability, TwMSG.ResetAll, ref _cap);
if(_rc != TwRC.Success) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
} finally {
_cap.Dispose();
}
} else {
throw new TwainException("The data source is not open. Источник данных не открыт.");
}
}
private void _SetCapCore(TwCapability cap, TwMSG msg) {
if((this._TwainState & TwainStateFlag.DSOpen) != 0) {
try {
TwRC _rc = this._dsmEntry.DsInvoke(this._AppId, this._srcds, TwDG.Control, TwDAT.Capability, msg, ref cap);
if(_rc != TwRC.Success) {
throw new TwainException(this._GetTwainStatus(), _rc);
}
} finally {
cap.Dispose();
}
} else {
throw new TwainException("The data source is not open. Источник данных не открыт.");
}
}
private void _SetCapCore(TwCap capability, TwMSG msg, object value) {
TwCapability _cap = null;
if(value is string) {
object[] _attrs = typeof(TwCap).GetField(capability.ToString())?.GetCustomAttributes(typeof(TwTypeAttribute), false);
if(_attrs?.Length > 0) {
_cap = new TwCapability(capability, (string)value, ((TwTypeAttribute)_attrs[0]).TwType);
} else {
_cap = new TwCapability(capability, (string)value, TwTypeHelper.TypeOf(value));
}
} else {
TwType _type = TwTypeHelper.TypeOf(value.GetType());
_cap = new TwCapability(capability, TwTypeHelper.ValueFromTw<uint>(TwTypeHelper.CastToTw(_type, value)), _type);
}
this._SetCapCore(_cap, msg);
}
private void _SetCapCore(TwCap capability, TwMSG msg, object[] value) {
var _attrs = typeof(TwCap).GetField(capability.ToString())?.GetCustomAttributes(typeof(TwTypeAttribute), false);
this._SetCapCore(
new TwCapability(
capability,
new TwArray() {
ItemType = _attrs?.Length > 0 ? ((TwTypeAttribute)(_attrs[0])).TwType : TwTypeHelper.TypeOf(value[0]),
NumItems = (uint)value.Length
},
value),
msg);
}
private void _SetCapCore(TwCap capability, TwMSG msg, Range value) => this._SetCapCore(new TwCapability(capability, value.ToTwRange()), msg);
private void _SetCapCore(TwCap capability, TwMSG msg, Enumeration value) {
var _attrs = typeof(TwCap).GetField(capability.ToString())?.GetCustomAttributes(typeof(TwTypeAttribute), false);
this._SetCapCore(
new TwCapability(
capability,
new TwEnumeration {
ItemType = _attrs?.Length > 0 ? ((TwTypeAttribute)(_attrs[0])).TwType : TwTypeHelper.TypeOf(value[0]),
NumItems = (uint)value.Count,
CurrentIndex = (uint)value.CurrentIndex,
DefaultIndex = (uint)value.DefaultIndex
},
value.Items),
msg);
}
/// <summary>
/// Sets the value for the specified <see cref="TwCap">capability</see>
/// <para xml:lang="ru">Устанавливает значение для указанного <see cref="TwCap">capability</see></para>
/// </summary>
/// <param name="capability">Listing Value <see cref="TwCap"/>.<para xml:lang="ru">Значение перечисления <see cref="TwCap"/>.</para></param>
/// <param name="value">The value to set.<para xml:lang="ru">Устанавливаемое значение.</para></param>
/// <exception cref="TwainException">Возникает в случае, если источник данных не открыт.</exception>
public void SetCap(TwCap capability, object value) => this._SetCapCore(capability, TwMSG.Set, value);
/// <summary>
/// Sets the value for the specified <see cref="TwCap">capability</see>
/// <para xml:lang="ru">Устанавливает значение для указанного <see cref="TwCap">capability</see></para>
/// </summary>
/// <param name="capability">Listing Value <see cref="TwCap"/>.<para xml:lang="ru">Значение перечисления <see cref="TwCap"/>.</para></param>
/// <param name="value">The value to set.<para xml:lang="ru">Устанавливаемое значение.</para></param>
/// <exception cref="TwainException">Возникает в случае, если источник данных не открыт.</exception>
public void SetCap(TwCap capability, object[] value) => this._SetCapCore(capability, TwMSG.Set, value);
/// <summary>
/// Sets the value for the specified <see cref="TwCap">capability</see>
/// <para xml:lang="ru">Устанавливает значение для указанного <see cref="TwCap">capability</see></para>
/// </summary>
/// <param name="capability">Listing Value <see cref="TwCap"/>.<para xml:lang="ru">Значение перечисления <see cref="TwCap"/>.</para></param>
/// <param name="value">The value to set.<para xml:lang="ru">Устанавливаемое значение.</para></param>
/// <exception cref="TwainException">Возникает в случае, если источник данных не открыт.</exception>
public void SetCap(TwCap capability, Range value) => this._SetCapCore(capability, TwMSG.Set, value);
/// <summary>
/// Sets the value for the specified <see cref="TwCap">capability</see>
/// <para xml:lang="ru">Устанавливает значение для указанного <see cref="TwCap">capability</see></para>
/// </summary>
/// <param name="capability">Listing Value <see cref="TwCap"/>.<para xml:lang="ru">Значение перечисления <see cref="TwCap"/>.</para></param>
/// <param name="value">The value to set.<para xml:lang="ru">Устанавливаемое значение.</para></param>
/// <exception cref="TwainException">Возникает в случае, если источник данных не открыт.</exception>
public void SetCap(TwCap capability, Enumeration value) => this._SetCapCore(capability, TwMSG.Set, value);
/// <summary>
/// Sets a limit on the values of the specified feature.
/// <para xml:lang="ru">Устанавливает ограничение на значения указанной возможности.</para>
/// </summary>
/// <param name="capability">Listing Value <see cref="TwCap"/>.<para xml:lang="ru">Значение перечисления <see cref="TwCap"/>.</para></param>
/// <param name="value">The value to set.<para xml:lang="ru">Устанавливаемое значение.</para></param>
/// <exception cref="TwainException">Возникает в случае, если источник данных не открыт.</exception>
public void SetConstraintCap(TwCap capability, object value) => this._SetCapCore(capability, TwMSG.SetConstraint, value);
/// <summary>
/// Sets a limit on the values of the specified feature.
/// <para xml:lang="ru">Устанавливает ограничение на значения указанной возможности.</para>
/// </summary>
/// <param name="capability">Listing Value <see cref="TwCap"/>.<para xml:lang="ru">Значение перечисления <see cref="TwCap"/>.</para></param>
/// <param name="value">The value to set.<para xml:lang="ru">Устанавливаемое значение.</para></param>
/// <exception cref="TwainException">Возникает в случае, если источник данных не открыт.</exception>
public void SetConstraintCap(TwCap capability, object[] value) => this._SetCapCore(capability, TwMSG.SetConstraint, value);
/// <summary>
/// Sets a limit on the values of the specified feature.
/// <para xml:lang="ru">Устанавливает ограничение на значения указанной возможности.</para>
/// </summary>
/// <param name="capability">Listing Value <see cref="TwCap"/>.<para xml:lang="ru">Значение перечисления <see cref="TwCap"/>.</para></param>
/// <param name="value">The value to set.<para xml:lang="ru">Устанавливаемое значение.</para></param>
/// <exception cref="TwainException">Возникает в случае, если источник данных не открыт.</exception>
public void SetConstraintCap(TwCap capability, Range value) => this._SetCapCore(capability, TwMSG.SetConstraint, value);
/// <summary>
/// Sets a limit on the values of the specified feature.
/// <para xml:lang="ru">Устанавливает ограничение на значения указанной возможности.</para>