SettingNode.AddEnumSetting Method
|
This method creates a new node and its setting directly under this node as a child node.
Namespace:
Kofax.OmniPageCSDK.IproPlus
Assembly:
Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntaxpublic void AddEnumSetting(
string Name,
int DefaultValue,
Object EnumValues,
Object EnumNames,
[OptionalAttribute] int Flags,
out SettingNode SettingNode
)
Public Sub AddEnumSetting (
Name As String,
DefaultValue As Integer,
EnumValues As Object,
EnumNames As Object,
<OptionalAttribute> Flags As Integer,
<OutAttribute> ByRef SettingNode As SettingNode
)
public:
void AddEnumSetting(
[InAttribute] String^ Name,
[InAttribute] int DefaultValue,
[InAttribute] Object^ EnumValues,
[InAttribute] Object^ EnumNames,
[OptionalAttribute] [InAttribute] int Flags,
[OutAttribute] SettingNode^% SettingNode
)
Parameters
- Name
- Type: System.String
- DefaultValue
- Type: System.Int32
- EnumValues
- Type: System.Object
- EnumNames
- Type: System.Object
- Flags (Optional)
- Type: System.Int32
- SettingNode
- Type: Kofax.OmniPageCSDK.IproPlus.SettingNode
Remarks
For more details, see the description of the AddEnumSetting method of
the SettingManager object.
The Name parameter for this object denotes a dot-separated path relative to this node. This is slightly
different from the FullName parameter of the SettingManager object's similar method, because it expects
an absolute (virtual root item relative) path.
See Also