ParameterModeChangedEventArgs Constructor

Creates an instance of the ParameterModeChangedEventArgs class with the old and new upper bound for the parameter.

Definition

Namespace: CapeOpen
Assembly: CapeOpen (in CapeOpen.dll) Version: 1.0.0.0 (1.0.0.0)
public ParameterModeChangedEventArgs(
	string paramName,
	Object oldMode,
	Object newMode
)

Parameters

paramName  String
The name of the parameter being changed.
oldMode  Object
The mode of the parameter prior to the change.
newMode  Object
The mode of the parameter after the change.

Remarks

You can use this constructor when raising the ParameterModeChangedEvent at run time to specify that the mode of the parameter has changed.

See Also