Click or drag to resize

DataTableMatrixProxy(DataTable, IAscendingIntegerCollection, IAscendingIntegerCollection, IAscendingIntegerCollection) Constructor

Initializes a new instance of the DataTableMatrixProxy class. The selected collections determine which columns and rows contribute to the matrix, and which row header column and column header column is used. 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 DataTableMatrixProxy(
	DataTable table,
	IAscendingIntegerCollection selectedDataRows,
	IAscendingIntegerCollection selectedDataColumns,
	IAscendingIntegerCollection selectedPropertyColumns
)

Parameters

table  DataTable
The underlying table.
selectedDataRows  IAscendingIntegerCollection
The selected data rows.
selectedDataColumns  IAscendingIntegerCollection
The selected data columns.
selectedPropertyColumns  IAscendingIntegerCollection
The selected property columns.
Exceptions
ExceptionCondition
ArgumentNullExceptiontable must not be null.
See Also