//create a new workbook var workbook = new GrapeCity.Documents.Excel.Workbook(); // Import JSON without options // TODO: Change the path to the real file path. workbook.Open("spread_js_exported.json"); // Import JSON with options // TODO: Change the path to the real file path. var options = new DeserializationOptions { IgnoreStyle = true }; workbook.Open("spread_js_exported.json", options);
' Create a new Workbook Dim workbook As New Workbook ' Import JSON without options ' TODO: Change the path to the real file path. workbook.Open("spread_js_exported.json") ' Import JSON with options ' TODO: Change the path to the real file path. Dim options As New DeserializationOptions With {.IgnoreStyle = True} workbook.Open("spread_js_exported.json", options)