ByteScout Data Extraction Suite - VB.NET - Insert page break with spreadsheet sdk - ByteScout

ByteScout Data Extraction Suite – VB.NET – Insert page break with spreadsheet sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Data Extraction Suite – VB.NET – Insert page break with spreadsheet sdk

How to insert page break with spreadsheet sdk in VB.NET and ByteScout Data Extraction Suite

This code in VB.NET shows how to insert page break with spreadsheet sdk with this how to tutorial

The coding instructions are formulated to help you to try-out the features without the requirement to write your own code. ByteScout Data Extraction Suite is the set that includes 3 SDK products for data extraction from PDF, scans, images and from spreadsheets: PDF Extractor SDK, Data Extraction SDK, Barcode Reader SDK and you can use it to insert page break with spreadsheet sdk with VB.NET.

The SDK samples given below describe how to quickly make your application do insert page break with spreadsheet sdk in VB.NET with the help of ByteScout Data Extraction Suite. Follow the instructions from scratch to work and copy the VB.NET code. If you want to use these VB.NET sample examples in one or many applications then they can be used easily.

ByteScout Data Extraction Suite free trial version is available on our website. VB.NET and other programming languages are supported.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.vb
      
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

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next