Click or drag to resize

FileImportScriptExeBaseExecute 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,
	IReadOnlyList<string> fileNames,
	IProgressReporter reporter
)

Parameters

myTable  DataTable
The table on which the table script is executed.
fileNames  IReadOnlyListString
The file name(s) of the file(s) to import.
reporter  IProgressReporter
Progress reporter that can be used by the script to report the progress of its work.
See Also