ProcessSourceTablesScriptExecuteWithoutExceptionCatching Method |
Executes the script. If no instance of the script object exists, the script is compiled. If thereafter no script object exists, a error message will be stored and the return value is false.
If the script object exists, the Execute function of this script object is called.
Namespace: Altaxo.ScriptingAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void ExecuteWithoutExceptionCatching(
DataTable myTable,
IReadOnlyListDictionary<string, DataTable> sourceTables,
IProgressReporter reporter
)
Parameters
- myTable DataTable
- The data table this script is working on.
- sourceTables IReadOnlyListDictionaryString, DataTable
- The source tables that will be processed by this script.
- reporter IProgressReporter
- Progress reporter that can be used by the script to report the progress of its work.
Remarks No exceptions are catched here. This function is therefore intended for being called by another script.
See Also