The documentation is designed to help you to implement the features on your side. ByteScout Spreadsheet SDK: the SDK to create, read, modify and calculate spreadsheets. Formula calculations are supported, import and export to and from JSON, CSV, XML, databases, arrays. It can insert page break in VB.NET.
VB.NET code samples for VB.NET developers help to speed up coding of your application when using ByteScout Spreadsheet SDK. In your VB.NET project or application you may simply copy & paste the code and then run your app! Enjoy writing a code with ready-to-use sample VB.NET codes.
You can download free trial version of ByteScout Spreadsheet SDK from our website to see and try many others source code samples for VB.NET.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
Imports System.IO
Imports System.Diagnostics
Imports Bytescout.Spreadsheet
Imports Bytescout.Spreadsheet.Structures
Class Program
Friend Shared Sub Main(args As String())
' Create new Spreadsheet
Dim document As New Spreadsheet()
' Add new worksheet
Dim worksheet As Worksheet = document.Workbook.Worksheets.Add("HelloWorld")
' Set cell value
worksheet.Cell(0, 0).Value = "Hello, World!"
' Add horizontal page break
worksheet.HPageBreaks.Add(New CellsRange("A10"))
' Add vertical page break
worksheet.VPageBreaks.Add(New CellsRange("F1"))
' Save document
document.SaveAs("Output.xls")
' Close Spreadsheet
document.Close()
' Open generated XLS document in default associated application
Process.Start("Output.xls")
End Sub
End Class
60 Day Free Trial or Visit ByteScout Spreadsheet SDK Home Page
Explore ByteScout Spreadsheet SDK Documentation
Explore Samples
Sign Up for ByteScout Spreadsheet SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout Spreadsheet SDK Home Page
Explore ByteScout Spreadsheet SDK Documentation
Explore Samples
Sign Up for ByteScout Spreadsheet SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: