Click or drag to resize

SettingManager.AddArraySetting Method

This method creates and returns a new node with an array type setting.

Namespace:  Kofax.OmniPageCSDK.IproPlus
Assembly:  Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntax
public void AddArraySetting(
	string FullName,
	Object DefaultValues,
	[OptionalAttribute] STSAPICONSTANTS Flags,
	out SettingNode SettingNode
)

Parameters

FullName
Type: System.String
DefaultValues
Type: System.Object
Flags (Optional)
Type: Kofax.OmniPageCSDK.IproPlus.STSAPICONSTANTS
SettingNode
Type: Kofax.OmniPageCSDK.IproPlus.SettingNode
Remarks

If the specified node already exists, a trappable error occurs. The FullName is the dot-separated, absolute path of the setting to be created; the DefaultValue parameter provides a default for this setting. Note that the following characters are reserved for internal use and cannot be contained in the setting name: colon (:), semicolon (;), equal-sign (=) and star (*). If the specified path refers to nodes not yet created in the tree, they are automatically created with no associated settings. The type and size of the created setting depends on the DefaultValue parameter type and size, which must be a one dimensional array (SAFEARRAY in C++ environments) built up from one of the following types: integer number, floating point number, Boolean value. If the parameter type is invalid, a trappable error occurs.

See Also