The sample shows instructions and algorithm of how to create spreadsheet with spreadsheet sdk and how to make it run in your JavaScript application. ByteScout Barcode Suite can create spreadsheet with spreadsheet sdk. It can be applied from JavaScript. ByteScout Barcode Suite is the bundle that privides 3 SDK products to generate barcodes (Barcode SDK), read barcodes (Barcode Reaer SDK) and read and write spreadsheets (Spreadsheet SDK).
Want to save time? You will save a lot of time on writing and testing code as you may just take the JavaScript code from ByteScout Barcode Suite for create spreadsheet with spreadsheet sdk below and use it in your application. IF you want to implement the functionality, just copy and paste this code for JavaScript below into your code editor with your app, compile and run your application. Use of ByteScout Barcode Suite in JavaScript is also described in the documentation included along with the product.
ByteScout provides the free trial version of ByteScout Barcode Suite along with the documentation and source code samples.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
var document = WScript.CreateObject('Bytescout.Spreadsheet.Spreadsheet'); // Add new worksheet var worksheet = document.Workbook.Worksheets.Add("HelloWorld"); // get cell value var cell = worksheet.Item(0,0); // you can also use worksheet.Cell("A1") as well // set cell value cell.Value = "Hello, World!"; // delete output file if exists already var fso = WScript.CreateObject('Scripting.FileSystemObject'); if (fso.FileExists('Output.xls')) { fso.DeleteFile('Output.xls'); } fso = null; // save document document.SaveAs ('Output.xls'); // close Spreadsheet document = null
60 Day Free Trial or Visit ByteScout Barcode Suite Home Page
Explore ByteScout Barcode Suite Documentation
Explore Samples
Sign Up for ByteScout Barcode Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout Barcode Suite Home Page
Explore ByteScout Barcode Suite Documentation
Explore Samples
Sign Up for ByteScout Barcode Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: