Textdateien als Arbeitsmappen öffnen
Contents
[
Hide
]
Nachfolgend finden Sie Vergleichscodebeispiele zum Öffnen von Textdateien als Arbeitsmappen:
VSTO
this.Application.Workbooks.OpenText(@"OpenTextFilesAsWorkbooks.txt",
missing, 3,
Excel.XlTextParsingType.xlDelimited,
Excel.XlTextQualifier.xlTextQualifierNone,
missing, missing, missing, true, missing, missing, missing,
missing, missing, missing, missing, missing, missing);
Aspose.Cells
private static string fileName = "OpenTextFilesAsWorkbooks.xlsx";
private static string TextFile = "OpenTextFilesAsWorkbooks.txt";
//loadoption to represent the option of load file
LoadOptions loadOptions = new LoadOptions(LoadFormat.CSV);
Workbook newWorkbook = new Workbook(TextFile, loadOptions);
newWorkbook.Save(fileName);