Click or drag to resize

TableScriptExeBaseExecute(DataTable, IProgressReporter) Method

Version 2 of the execute method. This method which must be overriden by the table script in order to be able to execute the script. This method is the entry point of the table script.In order to maintain backward compatibility, if not overridden, this method calls the version 1 of the execute method.

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,
	IProgressReporter reporter
)

Parameters

myTable  DataTable
The table on which the table script is executed.
reporter  IProgressReporter
Progress reporter that can be used by the script to report the progress of its work.
See Also