//create a new workbook var workbook = new GrapeCity.Documents.Excel.Workbook(); // Document Solutions for Excel supports open xltx file workbook.Open("xltx-imported.xltx"); // Save workbook as xltx file workbook.Save("xltx-exported.xltx");
' Create a new Workbook Dim workbook As New Workbook 'Document Solutions for Excel supports open xltx file workbook.Open("xltx-imported.xltx") 'Save workbook as xltx file workbook.Save("xltx-exported.xltx")