Click or drag to resize

ExtractTableValuesExeBaseIsRowIncluded Method

This method which must be overriden by the extract table data script in order to be able to execute the script. This method is the entry point of the table script

Namespace: Altaxo.Calc
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public virtual bool IsRowIncluded(
	DataTable myTable,
	int i
)

Parameters

myTable  DataTable
The table on which the table script is executed.
i  Int32
The row number of the data column collection, for which to determine if that row should be extracted or not.

Return Value

Boolean
True if that row should be extracted, false if it should not be extracted.
See Also