| Name | Description |
---|
| GetAsciiInputFileStream |
Helper function. Gets an FileStream by providing a file name. The stream is opened with read access and with the FileShare.Read flag.
|
| ImportFileIntoNewTable(String) |
Imports ascii from a memory stream into a table. Returns null (!) if nothing is imported.
|
| ImportFileIntoNewTable(String, Char) |
Imports ascii from a memory stream into a table. Returns null (!) if nothing is imported.
|
| ImportFilesIntoSeparateNewTables(ProjectFolder, IEnumerableString, Boolean, AsciiImportOptions) |
Imports multiple Ascii files into newly created new tables (each file into a separate table). The tables are named and stored in the project file in the provided project folder.
|
| ImportFilesIntoSeparateNewTables(ProjectFolder, IEnumerableString, Boolean, AsciiImportOptions) |
Imports multiple Ascii files into newly created new tables (each file into a separate table). The tables are named and stored in the project file in the provided project folder.
|
| ImportFilesIntoSeparateNewTables(ProjectFolder, IEnumerableString, Boolean, Boolean) |
Imports multiple Ascii files into newly created new tables (each file into a separate table). The tables are named and stored in the project file in the provided project folder.
|
| ImportFromAsciiFile(DataTable, String) |
Imports from an ASCII file into an existing table.
|
| ImportFromAsciiFile(DataTable, String, AsciiImportOptions) |
Imports from an ASCII file into an existing table. The import options have to be known already.
|
| ImportFromAsciiFile(DataTable, String, AsciiImportOptions) |
Imports from an ASCII file into an existing table.
|
| ImportFromAsciiStream(DataTable, Stream, String) |
Imports Ascii data from a stream into the data table.
|
| ImportFromAsciiStream(DataTable, Stream, String, AsciiImportOptions) |
Imports an Ascii stream into a table. The import options have to be known already.
|
| ImportFromAsciiStream(DataTable, Stream, String, AsciiImportOptions) |
Imports Ascii data from a stream into the data table.
|
| ImportFromAsciiText(DataTable, String) |
Imports from an ASCII text provided as string into an existing table.
|
| ImportFromAsciiText(DataTable, String, AsciiImportOptions) |
Imports from an ASCII text provided as string into an existing table. The import options have to be known already.
|
| ImportFromAsciiText(DataTable, String, AsciiImportOptions) |
Imports from an ASCII text provided as string into an existing table.
|
| ImportStreamIntoNewTable |
Imports ascii from a stream into a table. Returns null (!) if nothing is imported.
|
| ImportTextIntoNewTable |
Imports ascii from a string into a table. Returns null (!) if nothing is imported.
|
| TryImportFromMultipleAsciiFilesHorizontally(DataTable, IEnumerableString, Boolean, AsciiImportOptions, String) |
Imports multiple Ascii files into the provided table in horizontal order, i.e. in new columns. The provided importOptions are used to import the files.
The first column of each file is considered to be the x-column, and if they match another x-column, the newly imported columns will get the same column group.
|
| TryImportFromMultipleAsciiFilesHorizontally(DataTable, IEnumerableString, Boolean, AsciiImportOptions, String) |
Imports multiple Ascii files into the provided table in horizontal order, i.e. in new columns. The import options are determined from the first file, and then used to import all other files.
The first column of each file is considered to be the x-column, and if they match another x-column, the newly imported columns will get the same column group.
|
| TryImportFromMultipleAsciiFilesHorizontally(DataTable, IEnumerableString, Boolean, Boolean, String) |
Imports multiple Ascii files into the provided table in horizontal order, i.e. in new columns. Depending on the value of determineImportOptionsSeparatelyForEachFile, the import options are either deterimined from the first file and then used for all other files, or determined separately for each file.
The first column of each file is considered to be the x-column, and if they match another x-column, the newly imported columns will get the same column group.
|
| TryImportFromMultipleAsciiFilesVertically(DataTable, IEnumerableString, Boolean, AsciiImportOptions, String) |
Imports multiple Ascii files into the provided table in vertical order, i.e. in new rows. The provided importOptions are used to import the 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.
|
| TryImportFromMultipleAsciiFilesVertically(DataTable, IEnumerableString, Boolean, AsciiImportOptions, String) |
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.
|
| TryImportFromMultipleAsciiFilesVertically(DataTable, IEnumerableString, Boolean, Boolean, String) |
Imports multiple Ascii files into the provided table in vertical order, i.e. in new rows.. Depending on the value of determineImportOptionsSeparatelyForEachFile, the import options are either deterimined from the first file and then used for all other files, or determined separately for each file.
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.
|