mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +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>
|
/// <returns></returns>
|
||||||
public CapabilityReader GetValuesRaw()
|
public CapabilityReader GetValuesRaw()
|
||||||
{
|
{
|
||||||
using (TWCapability cap = new TWCapability(Capability))
|
return _source.Capabilities.GetValuesRaw(Capability);
|
||||||
{
|
|
||||||
var rc = _source.DGControl.Capability.Get(cap);
|
|
||||||
if (rc == ReturnCode.Success)
|
|
||||||
{
|
|
||||||
return CapabilityReader.ReadValue(cap);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -147,6 +147,26 @@ namespace NTwain
|
|||||||
return Enumerable.Empty<object>();
|
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>
|
/// <summary>
|
||||||
/// Resets all values and constraint to power-on defaults.
|
/// Resets all values and constraint to power-on defaults.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -123,7 +123,7 @@ namespace NTwain
|
|||||||
public ItemType ItemType { get; private set; }
|
public ItemType ItemType { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <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>
|
/// </summary>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// The one value.
|
/// The one value.
|
||||||
@ -280,7 +280,7 @@ namespace NTwain
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
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:
|
case Data.ItemType.UInt16:
|
||||||
{
|
{
|
||||||
var min = (ushort)RangeMinValue;
|
var min = (ushort)RangeMinValue;
|
||||||
@ -439,7 +439,7 @@ namespace NTwain
|
|||||||
RangeCount = ((max - min) / step) + 1;
|
RangeCount = ((max - min) / step) + 1;
|
||||||
}
|
}
|
||||||
break;
|
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:
|
case Data.ItemType.UInt16:
|
||||||
{
|
{
|
||||||
var min = (ushort)RangeMinValue;
|
var min = (ushort)RangeMinValue;
|
||||||
|
@ -23,7 +23,7 @@ namespace NTwain
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The build release version number.
|
/// The build release version number.
|
||||||
/// </summary>
|
/// </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