←Select platform

DefaultValue Property

Summary
Gets the default value in the range contained in the TwainRangeCapability object.

Syntax
C#
C++/CLI
Python
public object DefaultValue { get; set; } 
public: 
property Object^ DefaultValue { 
   Object^ get(); 
   void set (    Object^ ); 
} 
DefaultValue # get and set (TwainRangeCapability) 

Property Value

The default value in the range contained in the TwainRangeCapability object.

Remarks

For more information, refer to How to Work with the Container.

Example
C#
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(); 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Twain Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.