Click or drag to resize

SettingNodeGetEnumInfo Method

This method returns the available enum values and their names for an enum type setting.

Namespace:  Kofax.OmniPageCSDK.IproPlus
Assembly:  Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntax
public void GetEnumInfo(
	out Object EnumValues,
	out Object EnumNames
)

Parameters

EnumValues
Type: SystemObject
EnumNames
Type: SystemObject
Remarks

The EnumValues out parameter is a one-dimensional array of long values (for Visual Basic programmers), or a SAFEARRAY of longs (for C++ programmers), which contains the available enum items for the setting. The optional EnumNames out variant parameter is a one-dimensional array of string values (for Visual Basic programmers), or a SAFEARRAY of BSTRs (for C++ programmers), returning the associated friendly names of the enum values. If the node does not have an associated enum setting, empty arrays are returned.

See Also