Click or drag to resize

DataTableMultipleColumnProxy(String, DataTable, IAscendingIntegerCollection, IAscendingIntegerCollection) Constructor

Initializes a new instance of the DataTableMultipleColumnProxy class. The selected collections determine which columns and rows contribute to this instance. The group number is determined by the first selected column (or, if no column is selected, by the first column of the data table).

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public DataTableMultipleColumnProxy(
	string identifier,
	DataTable table,
	IAscendingIntegerCollection? selectedDataRows,
	IAscendingIntegerCollection? selectedDataColumns
)

Parameters

identifier  String
The identifier of the bundle of columns that are initially set with this constructor.
table  DataTable
The underlying table.
selectedDataRows  IAscendingIntegerCollection
The selected data rows. If all data rows should be included, this argument can be null.
selectedDataColumns  IAscendingIntegerCollection
The selected data columns. If all data columns should be selected, this argument can be null.
Exceptions
ExceptionCondition
ArgumentNullExceptiontable must not be null.
See Also