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.PluginsAssembly: 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
)
Public Overridable Sub AfterInitialization (
Spectra As IEnumerable(Of ImpedanceSpectrum),
parent As IWin32Window,
SharedParameters As List(Of Fitparameter),
IndividualParameters As List(Of Tuple(Of ImpedanceSpectrum, List(Of Fitparameter))),
ByRef Cancel As Boolean
)
Dim instance As RelaxISPlugin_MultifitModel
Dim Spectra As IEnumerable(Of ImpedanceSpectrum)
Dim parent As IWin32Window
Dim SharedParameters As List(Of Fitparameter)
Dim IndividualParameters As List(Of Tuple(Of ImpedanceSpectrum, List(Of Fitparameter)))
Dim Cancel As Boolean
instance.AfterInitialization(Spectra,
parent, SharedParameters, IndividualParameters,
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