ParameterUpperBoundChangedEventArgs Constructor

Creates an instance of the ParameterUpperBoundChangedEventArgs 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 ParameterUpperBoundChangedEventArgs(
	string paramName,
	Object oldUpperBound,
	Object newUpperBound
)

Parameters

paramName  String
The name of the parameter being changed.
oldUpperBound  Object
The upper bound of the parameter prior to the change.
newUpperBound  Object
The upper bound of the parameter after the change.

Remarks

You can use this constructor when raising the ParameterUpperBoundChangedEvent at run time to specify that the upper bound of the parameter has changed.

See Also