Click or drag to resize

RelaxISPlugin_MultifitModelAfterInitialization Method

This method is called once after the parameter initialization was performed by the user but before the fit is executed. Use this method to e.g. check or save initial parameters.

Namespace: RelaxIS_SDK.Plugins
Assembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax
public virtual void AfterInitialization(
	IEnumerable<ImpedanceSpectrum> Spectra,
	IWin32Window parent,
	List<Fitparameter> SharedParameters,
	List<Tuple<ImpedanceSpectrum, List<Fitparameter>>> IndividualParameters,
	ref bool Cancel
)

Parameters

Spectra  IEnumerableImpedanceSpectrum
The list of spectra that were selected by the user and are to be changed
parent  IWin32Window
A parent form that can be used for user interaction in e.g. modal dialogs.
SharedParameters  ListFitparameter
The shared parameters set by the user
IndividualParameters  ListTupleImpedanceSpectrum, ListFitparameter
The individual parameters set by the user for each spectrum.
Cancel  Boolean
Set this to True, to stop the execution of the ManipulateSpectrum method.
See Also