Click or drag to resize

ColumnPlotDataExchangeTableControllerGetTablesWithGroupThatFitExistingPlotColumns Method

Gets all tables together with the group number which have a group with column names that match the provided column names in columnNames.

Namespace: Altaxo.Gui.Graph.Plot.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static IEnumerable<(DataTable dataTable, int groupNumber)> GetTablesWithGroupThatFitExistingPlotColumns(
	IEnumerable<string> columnNames,
	CancellationToken cancellationToken
)

Parameters

columnNames  IEnumerableString
The column names to match.
cancellationToken  CancellationToken
The cancellation token.

Return Value

IEnumerableValueTupleDataTable, Int32
The table/group combinations whose column names match the specified plot-column names.
See Also