-
Notifications
You must be signed in to change notification settings - Fork 0
Open or create an excel file
Pierlam-dev edited this page Jan 24, 2026
·
1 revision
ExcelProcessor is the main object to work with excel content. Open an Excel is very simple. Call the method Open, then it will return an ExcelFile object.
ExcelError error;
ExcelProcessor proc = new ExcelProcessor();
string filename = "C:\Files\mydata.xlsx";
ExcelFile excelFile = proc.OpenExcelFile(filename);
If the file does not exists, an error will occured, the method will return false.
ExcelFile excelFile = proc.CreateExcelFile(filename);
by Pierlam - March 2026