RelaxISPlugin_DataManipulationPerformSetup Method |
This method is called once before the the manipulation of the spectra is started. 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_Fitted> Spectra,
ref bool Cancel
)
Public Overridable Sub PerformSetup (
Spectra As IEnumerable(Of ImpedanceSpectrum_Fitted),
ByRef Cancel As Boolean
)
Dim instance As RelaxISPlugin_DataManipulation
Dim Spectra As IEnumerable(Of ImpedanceSpectrum_Fitted)
Dim Cancel As Boolean
instance.PerformSetup(Spectra, Cancel)
Parameters
- Spectra IEnumerableImpedanceSpectrum_Fitted
- The list of spectra that were selected by the user and are to be changed
- Cancel Boolean
- Set this to True, to stop the execution of the ManipulateSpectrum method.
Remarks Do not modify the list of spectra in this method. Instead, use the ManipulateSpectrum method to make changes.
See Also