Click or drag to resize

ChadaImportImportRamanCHADA(String, DataTable, Int32, DataColumn, Int32, Int32) Method

Imports a RamanChada file (aware of importing multiple files in one table).

Namespace: Altaxo.Serialization.HDF5.Chada
Assembly: AltaxoDom (in AltaxoDom.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
protected static string? ImportRamanCHADA(
	string fileName,
	DataTable dataTable,
	int totalNumberOfFiles,
	ref DataColumn?? lastXColumn,
	ref int lastGroupNumber,
	ref int lastNumberOfY
)

Parameters

fileName  String
Name of the file to read from.
dataTable  DataTable
The data table to write the data to.
totalNumberOfFiles  Int32
The total number of files in this import.
lastXColumn  DataColumn
The last x column. Can be null. At the first call to this function, the value should be null. Subsequent calls should provide the value returned from the previous call.
lastGroupNumber  Int32
The last group number. At the first call to this function, the value should be -1. Subsequent calls should provide the value returned from the previous call.
lastNumberOfY  Int32
The last number of the y-column. At the first call to this function, the value should be -1. Subsequent calls should provide the value returned from the previous call.

Return Value

String
Null if successful; otherwise the error message.
See Also