Click or drag to resize

AsciiImporterTryImportFromMultipleAsciiFilesVertically(DataTable, IEnumerableString, Boolean, AsciiImportOptions, String) Method

Imports multiple Ascii files into the provided table in vertical order, i.e. in new rows.. The import options are determined from the first file, and then used to import all other files. If the names of the subsequently imported table columns match, the data will be written in the matching column. Otherwise new columns with the unmatched column names were created. Property columns will only be imported from the first table.

Namespace: Altaxo.Serialization.Ascii
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static bool TryImportFromMultipleAsciiFilesVertically(
	this DataTable dataTable,
	IEnumerable<string> fileNames,
	bool sortFileNames,
	out AsciiImportOptions importOptions,
	out string errors
)

Parameters

dataTable  DataTable
The table the data should be imported to.
fileNames  IEnumerableString
An array of filenames to import.
sortFileNames  Boolean
If true, the fileNames are sorted before usage in ascending order using the default string comparator.
importOptions  AsciiImportOptions
On return, contains the options used to import the first Ascii files. These options are also used to import all other Ascii files.
errors  String
Null if no error occurs, or an error description.

Return Value

Boolean
True if successfull; otherwise, false.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DataTable. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also