//create a new workbook var workbook = new GrapeCity.Documents.Excel.Workbook(); //set workbook's reference style to R1C1. exported xlsx file will be R1C1 style. workbook.ReferenceStyle = ReferenceStyle.R1C1;
' Create a new Workbook Dim workbook As New Workbook 'set workbook's reference style to R1C1. exported xlsx file will be R1C1 style. workbook.ReferenceStyle = ReferenceStyle.R1C1 ' save to an excel file workbook.Save("ConfigWorkbookReferenceStyle.xlsx")