public object StepSize { get; set; }
StepSize # get and set (TwainRangeCapability)
The step size contained in the TwainRangeCapability object.
The step size is the amount of increase from one step to the next within the range. For example, if the MinimumValue = 0, the MaximumValue = 100, StepSize is 2, then it will take 50 steps to increase from 0 to 100. For more information, refer to How to Work with the Container.
using Leadtools;
using Leadtools.Twain;
public void TwainRangeCapabilityExample(IntPtr parent)
{
TwainSession session = new TwainSession();
session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None);
TwainCapability twCap = new TwainCapability();
twCap.Information.ContainerType = TwainContainerType.Range;
twCap.Information.Type = TwainCapabilityType.ImageBrightness;
twCap.RangeCapability.ItemType = TwainItemType.Fix32;
twCap.RangeCapability.CurrentValue = 100.0F;
twCap.RangeCapability.MinimumValue = -200F;
twCap.RangeCapability.MaximumValue = 200F;
twCap.RangeCapability.StepSize = 10;
session.SetCapability(twCap, TwainSetCapabilityMode.Set);
session.Shutdown();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document