Skip to content

Commit

Permalink
= regular update
Browse files Browse the repository at this point in the history
  • Loading branch information
estarkov committed Sep 25, 2019
1 parent 5e7defc commit 03c91a6
Showing 1 changed file with 42 additions and 11 deletions.
53 changes: 42 additions & 11 deletions Create spreadsheet with spreadsheet sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,59 @@ Want to quickly learn? This fast application programming interfaces of ByteScout

The trial version of ByteScout Data Extraction Suite can be downloaded for free from our website. It also includes source code samples for JavaScript and other programming languages.

## Get In Touch
## REQUEST FREE TECH SUPPORT

[Click here to get in touch](https://bytescout.zendesk.com/hc/en-us/requests/new?subject=ByteScout%20Data%20Extraction%20Suite%20Question)

or send email to [support@bytescout.com](mailto:support@bytescout.com?subject=ByteScout%20Data%20Extraction%20Suite%20Question)
or just send email to [support@bytescout.com](mailto:support@bytescout.com?subject=ByteScout%20Data%20Extraction%20Suite%20Question)

## Free Trial Download
## ON-PREMISE OFFLINE SDK

[Get Your 60 Day Free Trial](https://bytescout.com/download/web-installer?utm_source=github-readme)
[Explore SDK Docs](https://bytescout.com/documentation/index.html?utm_source=github-readme)
[Sign Up For Online Training](https://academy.bytescout.com/)

## Web API (On-demand version)

[Get your free API key](https://pdf.co/documentation/api?utm_source=github-readme)
## ON-DEMAND REST WEB API

## API Documentation and References
[Get your API key](https://pdf.co/documentation/api?utm_source=github-readme)
[Explore Web API Documentation](https://pdf.co/documentation/api?utm_source=github-readme)
[Explore Web API Samples](https://github.com/bytescout/ByteScout-SDK-SourceCode/tree/master/PDF.co%20Web%20API)

[Explore ByteScout Data Extraction Suite Documentation](https://bytescout.com/documentation/index.html?utm_source=github-readme)
## VIDEO REVIEW

[Explore Web API Documentation](https://pdf.co/documentation/api?utm_source=github-readme)
[https://www.youtube.com/watch?v=NEwNs2b9YN8](https://www.youtube.com/watch?v=NEwNs2b9YN8)




<!-- code block begin -->

##### ****HelloWorld.js:**

```
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');
[Check Free Training Sessions for ByteScout%20Data%20Extraction%20Suite](https://academy.bytescout.com/)
// close Spreadsheet
document = null
## Video Review
```

[https://www.youtube.com/watch?v=NEwNs2b9YN8](https://www.youtube.com/watch?v=NEwNs2b9YN8)
<!-- code block end -->

0 comments on commit 03c91a6

Please sign in to comment.