Resurrected previous cap value writer from twaincs.

This commit is contained in:
Eugene Wang 2023-04-07 20:11:26 -04:00
parent 60ef4c144b
commit c29f4944e9
3 changed files with 571 additions and 517 deletions

View File

@ -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

View File

@ -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>