//create a new workbook
var workbook = new GrapeCity.Documents.Excel.Workbook();
//change the path to real export path when save.
workbook.Save("dest.xlsx");
' Create a new Workbook
Dim workbook As New Workbook
'change the path to real export path when save.
workbook.Save("dest.xlsx", SaveFileFormat.Xlsx)