Returns or sets the string value for a capability when the value of the CapType property is TWON_ONEVALUE. This is a runtime property.

Namespace: Dynamsoft.DotNet.TWAIN
Assembly: DynamicDotNetTWAIN (in DynamicDotNetTWAIN.dll) Version: 3.0.0.0 (3.0.0.0)

Syntax

C#
public string CapValueString { get; set; }
Visual Basic
Public Property CapValueString As String
	Get
	Set

Remarks

Reading this property after calling CapGet() method. After setting this property, call CapSet() method to actually set the value. CapValueString property is used to set or return String type value. For any other data types when the CapType property is TWON_ONEVALUE, use CapValue property.

Exceptions

ExceptionCondition
Dynamsoft.DotNet.TWAIN..::..TwainException When an error occurs and IfThrowException property is true, an exception will be thrown. When IfThrowException property is false, please check ErrorCode and ErrorString.

See Also