Leadtools.Forms.Ocr Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
GetEnumValue Method
See Also 
Leadtools.Forms.Ocr Namespace > IOcrSettingManager Interface : GetEnumValue Method



settingName
Unique setting name. If the IOcrEngine does not support the setting with the unique name settingName, an exception will be thrown. You can check which settings the engine supports by using GetSettingNames or IsSettingNameSupported.
settingName
Unique setting name. If the IOcrEngine does not support the setting with the unique name settingName, an exception will be thrown. You can check which settings the engine supports by using GetSettingNames or IsSettingNameSupported.
Gets the current value of an enum setting as an integer.

Syntax

Visual Basic (Declaration) 
Overridable Function GetEnumValue( _
   ByVal settingName As String _
) As Integer
Visual Basic (Usage)Copy Code
Dim instance As IOcrSettingManager
Dim settingName As String
Dim value As Integer
 
value = instance.GetEnumValue(settingName)
C# 
virtual int GetEnumValue( 
   string settingName
)
C++/CLI 
virtual int GetEnumValue( 
   String^ settingName
) 

Parameters

settingName
Unique setting name. If the IOcrEngine does not support the setting with the unique name settingName, an exception will be thrown. You can check which settings the engine supports by using GetSettingNames or IsSettingNameSupported.

Return Value

The current enum value of the setting with the unique name settingName as an integer.

Example

For an example, refer to IOcrSettingManager.

Remarks

The uniqueName setting must be an "enum" type setting, otherwise; this method will throw an exception. To get the type of a setting along with other information such as its friendly name and range use the GetSettingDescriptor method.

This method returns the value as an integer, if the enum is not a flag enum type (the value of IOcrSettingDescriptor.EnumIsFlags of the IOcrSettingDescriptor for this setting is false, then the integer value of the setting is the integer value of the enum member (The enum member values and their friendly names can be obtained with IOcrSettingDescriptor.GetEnumMemberValues and IOcrSettingDescriptor.GetEnumMemberFriendlyNames).

If the enum is a flag enum type (the value of IOcrSettingDescriptor.EnumIsFlags of the IOcrSettingDescriptor for this setting is true, then the integer value of the setting is the sum of the OR'ed flagged set.

To set the value of an enum setting as integer, use SetEnumValue.

To get or set the enum value from a string value, use GetEnumValueAsString or SetEnumValue.

You can also set the value of any setting from a string (where the string will be converted to a compatible type) using SetValue. To get the value of any setting as a string, use GetValue Note that settings of type OcrSettingValueType.BeginCategory and OcrSettingValueType.EndCategory have no values and will throw an exception if you try to get or set their values.

IOcrEngine is a wrapper for different OCR engines. These engines contain specific additional features and functionalities that can be queried and updated using the IOcrSettingManager interface.

You can use the different methods of the IOcrSettingManager interface to get and set the engine-specific settings. Each setting has a unique name (a string value). You can get all the settings available to the current OCR engine through the GetSettingNames method. The GetSettingDescriptor method returns a description of the setting (its type, friendly name and value range), you can then use the various setting get and set methods to query and change the value of a certain setting. For example, if the setting type is OcrSettingValueType.Integer, you can use the GetIntegerValue to get the current value of the setting and the SetIntegerValue to change its value. Refer to IOcrSettingManager for a complete example.

For a list of supported engine-specific settings and their meanings, refer to OCR engine-specific Settings.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also

GetEnumValue requires an OCR module license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features