Click or drag to resize

ExportFromColumn Method

Exports to a single SPC spectrum from a single table column.

Namespace: Altaxo.Serialization.Galactic
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static string? FromColumn(
	string filename,
	DataTable table,
	int columnnumber,
	INumericColumn xcolumn,
	IAscendingIntegerCollection selectedRows
)

Parameters

filename  String
The name of the file where to export to.
table  DataTable
The table from which to export.
columnnumber  Int32
The number of the table column that contains the data to export.
xcolumn  INumericColumn
The x column that contains the x data.
selectedRows  IAscendingIntegerCollection
The rows that where selected in the table, i.e. the rows which are exported. If this parameter is null or no rows are selected, then all data of a column will be exported.

Return Value

String
Null if export was successfull, error description otherwise.
See Also