IntegerParameter(String, Int32, CapeParamMode) Constructor

Creates a new instance of the integer-valued parameter class.

Definition

Namespace: CapeOpen
Assembly: CapeOpen (in CapeOpen.dll) Version: 1.0.0.0 (1.0.0.0)
public IntegerParameter(
	string name,
	int value,
	CapeParamMode mode
)

Parameters

name  String
Sets as the ComponentName of the parameter's ICapeIdentification interface.
value  Int32
Sets the inital value of the parameter.
mode  CapeParamMode
Sets the CapeParamMode mode of the parameter

Remarks

The default value is set to the inital value of the parameter. The upper bound is set to Int32.MaxValue (2,147,483,647) and the lower bound is set to Int32.MinValue (-2,147,483,648). The mode is set to CapeParamMode.CAPE_INPUT_OUTPUT.

See Also