RelaxISPlugin_MultifitModelPerformSetup Method |
This method is called once before the parameter initialization is started, right after the model was selected by the user. Use this method to perform initializations or for user interaction.
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public virtual void PerformSetup(
IEnumerable<ImpedanceSpectrum> Spectra,
IWin32Window parent,
ref bool Cancel
)
Public Overridable Sub PerformSetup (
Spectra As IEnumerable(Of ImpedanceSpectrum),
parent As IWin32Window,
ByRef Cancel As Boolean
)
Dim instance As RelaxISPlugin_MultifitModel
Dim Spectra As IEnumerable(Of ImpedanceSpectrum)
Dim parent As IWin32Window
Dim Cancel As Boolean
instance.PerformSetup(Spectra, parent,
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.
- Cancel Boolean
- Set this to True, to stop the execution of the ManipulateSpectrum method.
See Also