Hi Bwilbur,
Sorry for the inconvenience caused.
1.
http://help.syncfusion.com/ug_73/xlsio/ImportExportDataTable.html Please find the above link for documentation of Import/Export Data table.
2. Please find the below code snippet for multiple ExcelExportDataTableOptions for the data table.
DataTable VendorTable, VendorTable1;
ExcelEngine excelEngine = new ExcelEngine();
IApplication application = excelEngine.Excel;
IWorkbook workbook = application.Workbooks.Open("../../Test.xlsx", ExcelVersion.Excel2007);
workbook.Version = ExcelVersion.Excel97to2003;
IWorksheet sheet = workbook.Worksheets[0];
IWorksheet sheet1 = workbook.Worksheets[1];
//Read Data
VendorTable = sheet.ExportDataTable(sheet.Range[1,1,63356,6], ExcelExportDataTableOptions.None);
VendorTable1 = sheet.ExportDataTable(sheet.Range[63356,6,64460,6], ExcelExportDataTableOptions.None);
DataView VendorView = new DataView(VendorTable);
DataView VendorView1 = new DataView(VendorTable1);
workbook.Close();
Regards,
Ashish Pillai