public object DefaultValue { get; set; }
DefaultValue # get and set (TwainRangeCapability)
The default value in the range contained in the TwainRangeCapability object.
For more information, refer to How to Work with the Container.
using Leadtools;
using Leadtools.Twain;
public void DefaultValuePropertyExample(IntPtr parent)
{
TwainSession twnSession = new TwainSession();
twnSession.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 = 150.0F;
twCap.RangeCapability.DefaultValue = 50F;
twCap.RangeCapability.MinimumValue = -200;
twCap.RangeCapability.MaximumValue = 200;
twCap.RangeCapability.StepSize = 10;
twnSession.SetCapability(twCap, TwainSetCapabilityMode.Set);
twnSession.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