Click or drag to resize

ColumnInformation Constructor

Creates an instance of ColumnInformation.

Namespace: Altaxo.Graph.Plot.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public ColumnInformation(
	string columnLabel,
	IReadableColumn column,
	string columnName,
	Action<IReadableColumn?, DataTable, int> setColumnAction
)

Parameters

columnLabel  String
The label of this column for user convenience.
column  IReadableColumn
The column.
columnName  String
The name of the column (e.g. the column name in the underlying table), last part of the column proxies document path.
setColumnAction  ActionIReadableColumn, DataTable, Int32
Designates the action to set the column. 1st argument is the value of the column that should be set. 2nd argument are the underlying table of the column, and 3rd argument is the group number of the column.
See Also