ParameterDefaultValueChangedEventArgs Constructor

Creates an instance of the ParameterDefaultValueChangedEventArgs class with the old and new default values.

Definition

Namespace: CapeOpen
Assembly: CapeOpen (in CapeOpen.dll) Version: 1.0.0.0 (1.0.0.0)
public ParameterDefaultValueChangedEventArgs(
	string paramName,
	Object oldDefaultValue,
	Object newDefaultValue
)

Parameters

paramName  String
The name of the parameter being changed.
oldDefaultValue  Object
The default value of the parameter prior to the change.
newDefaultValue  Object
The default value of the parameter after the change.

Remarks

You can use this constructor when raising the ParameterDefaultValueChangedEventArgs at run time to specify that the default value of the parameter has changed.

See Also