ParameterValueChangedEventArgs Constructor

Creates an instance of the ParameterValueChangedEventArgs class with the old and parameter value.

Definition

Namespace: CapeOpen
Assembly: CapeOpen (in CapeOpen.dll) Version: 1.0.0.0 (1.0.0.0)
public ParameterValueChangedEventArgs(
	string paramName,
	Object oldValue,
	Object newValue
)

Parameters

paramName  String
The name of the parameter being changed.
oldValue  Object
The name of the PMC prior to the name change.
newValue  Object
The name of the PMC after the name change.

Remarks

You can use this constructor when raising the ParameterValueChangedEvent at run time to specify a specific the parameter having its value changed.

See Also