Click or drag to resize

DataTablesAggregationProcessData Constructor

Initializes a new instance of the DataTablesAggregationProcessData class.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public DataTablesAggregationProcessData(
	IEnumerable<DataTableProxy> tables,
	IRowSelection rowSelection,
	ImmutableList<string> dataTableNameFilter,
	bool addMatched,
	bool removeUnmatched
)

Parameters

tables  IEnumerableDataTableProxy
The source table proxies. They are used as is, i.e. without cloning, thus make sure to clone them before if they are used elsewhere.
rowSelection  IRowSelection
The row selection to use for all tables. It is used as is, i.e. without cloning, thus make sure to clone it before if it is used elsewhere.
dataTableNameFilter  ImmutableListString
The table name filters used to select tables for aggregation.
addMatched  Boolean
If set to true, tables matching the filter are added before execution of the data source.
removeUnmatched  Boolean
If set to true, tables not matching the filter are removed before execution of the data source.
See Also