mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
Resurrected previous cap value writer from twaincs.
This commit is contained in:
parent
60ef4c144b
commit
c29f4944e9
@ -20,7 +20,7 @@ namespace WinFormSample
|
||||
public Form1()
|
||||
{
|
||||
InitializeComponent();
|
||||
var libVer = FileVersionInfo.GetVersionInfo(typeof(TwainAppSession).Assembly.Location).FileVersion;
|
||||
var libVer = FileVersionInfo.GetVersionInfo(typeof(TwainAppSession).Assembly.Location).ProductVersion;
|
||||
Text += $"{(TwainPlatform.Is32bit ? " 32bit" : " 64bit")} on NTwain {libVer}";
|
||||
|
||||
TwainPlatform.PreferLegacyDSM = false;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,5 @@
|
||||
using NTwain.Data;
|
||||
using NTwain.Triplets;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
@ -268,6 +267,9 @@ namespace NTwain
|
||||
|
||||
/// <summary>
|
||||
/// Sets a CAP's current value.
|
||||
/// An easy way to create a value is to use the
|
||||
/// <see cref="ValueWriter.CreateOneValueCap{TValue}(CAP, IMemoryManager, TValue)"/>
|
||||
/// extension method (or the other container variants).
|
||||
/// Memory of the value will be freed afterwards.
|
||||
/// </summary>
|
||||
/// <param name="value"></param>
|
||||
@ -287,6 +289,9 @@ namespace NTwain
|
||||
|
||||
/// <summary>
|
||||
/// Sets a CAP's constraint values.
|
||||
/// An easy way to create a value is to use the
|
||||
/// <see cref="ValueWriter.CreateOneValueCap{TValue}(CAP, IMemoryManager, TValue)"/>
|
||||
/// extension method (or the other container variants).
|
||||
/// Memory of the value will be freed afterwards.
|
||||
/// </summary>
|
||||
/// <param name="value"></param>
|
||||
|
Loading…
Reference in New Issue
Block a user