mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 19:21:05 +08:00
Also added GetValuesRaw() to capabilities class.
This commit is contained in:
parent
f66f48b4e3
commit
86bf6efe34
@ -308,15 +308,7 @@ namespace NTwain
|
||||
/// <returns></returns>
|
||||
public CapabilityReader GetValuesRaw()
|
||||
{
|
||||
using (TWCapability cap = new TWCapability(Capability))
|
||||
{
|
||||
var rc = _source.DGControl.Capability.Get(cap);
|
||||
if (rc == ReturnCode.Success)
|
||||
{
|
||||
return CapabilityReader.ReadValue(cap);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
return _source.Capabilities.GetValuesRaw(Capability);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -147,6 +147,26 @@ namespace NTwain
|
||||
return Enumerable.Empty<object>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the possible values of this capability without expanding.
|
||||
/// This may be required to work with large range values that cannot be safely enumerated
|
||||
/// with <see cref="GetValues"/>.
|
||||
/// </summary>
|
||||
/// <param name="capabilityId">The capability id.</param>
|
||||
/// <returns></returns>
|
||||
public CapabilityReader GetValuesRaw(CapabilityId capabilityId)
|
||||
{
|
||||
using (TWCapability cap = new TWCapability(capabilityId))
|
||||
{
|
||||
var rc = _source.DGControl.Capability.Get(cap);
|
||||
if (rc == ReturnCode.Success)
|
||||
{
|
||||
return CapabilityReader.ReadValue(cap);
|
||||
}
|
||||
}
|
||||
return new CapabilityReader();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Resets all values and constraint to power-on defaults.
|
||||
/// </summary>
|
||||
|
@ -123,7 +123,7 @@ namespace NTwain
|
||||
public ItemType ItemType { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the one value if container is <see cref="NTwain.Data.ContainerType.Array"/>.
|
||||
/// Gets the one value if container is <see cref="NTwain.Data.ContainerType.OneValue"/>.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The one value.
|
||||
@ -280,7 +280,7 @@ namespace NTwain
|
||||
}
|
||||
}
|
||||
break;
|
||||
// these should never happen since TW_ENUM fields are 4 bytes but you never know
|
||||
// these should never happen since TW_RANGE fields are 4 bytes but you never know
|
||||
case Data.ItemType.UInt16:
|
||||
{
|
||||
var min = (ushort)RangeMinValue;
|
||||
@ -439,7 +439,7 @@ namespace NTwain
|
||||
RangeCount = ((max - min) / step) + 1;
|
||||
}
|
||||
break;
|
||||
// these should never happen since TW_ENUM fields are 4 bytes but you never know
|
||||
// these should never happen since TW_RANGE fields are 4 bytes but you never know
|
||||
case Data.ItemType.UInt16:
|
||||
{
|
||||
var min = (ushort)RangeMinValue;
|
||||
|
@ -23,7 +23,7 @@ namespace NTwain
|
||||
/// <summary>
|
||||
/// The build release version number.
|
||||
/// </summary>
|
||||
public const string Build = "3.3.6"; // change this for each nuget release
|
||||
public const string Build = "3.3.7"; // change this for each nuget release
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user