Click or drag to resize

ProcessSourceTablesScriptExeBaseExecute Method

This method must be overriden by the import script in order to be able to execute the script. This method is the entry point of the import script.

Namespace: Altaxo.Calc
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public virtual void Execute(
	DataTable myTable,
	IReadOnlyListDictionary<string, DataTable> sourceTables,
	IProgressReporter reporter
)

Parameters

myTable  DataTable
The table on which the table script is executed.
sourceTables  IReadOnlyListDictionaryString, DataTable
The list of source tables that should be processed by this script.
reporter  IProgressReporter
Progress reporter that can be used by the script to report the progress of its work.
See Also