Called after a Curve parameter has been changed.

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Protected Friend Overridable Sub OnParameterChanged ( _
	index As Integer, _
	value As Double _
)
C#
protected internal virtual void OnParameterChanged (
	int index,
	double value
)
C++
protected public:
virtual void OnParameterChanged (
	int index, 
	double value
)

Parameters

index (System.Int32)
The index of the parameter.
value (System.Double)
The new value of the parameter.

Remarks

Inheritors can override this method to perform certain calculations using the new value of the parameter.