ByteScout PDF SDK - VB.NET - Create And Use Template In PDF - ByteScout

ByteScout PDF SDK – VB.NET – Create And Use Template In PDF

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF SDK – VB.NET – Create And Use Template In PDF

How to create and use template in PDF in VB.NET using ByteScout PDF SDK

This code in VB.NET shows how to create and use template in PDF with this how to tutorial

These sample source codes on this page below are demonstrating how to create and use template in PDF in VB.NET. ByteScout PDF SDK is the library for pdf documents generation, modification and updates. Can also generate and fill PDF forms. Provides support for text (fonts, style, size, font family), layers, pdf form fields, vector and raster drawings. It can be used to create and use template in PDF using VB.NET.

This code snippet below for ByteScout PDF SDK works best when you need to quickly create and use template in PDF in your VB.NET application. This VB.NET sample code is all you need for your app. Just copy and paste the code, add references (if needs to) and you are all set! Further enhancement of the code will make it more vigorous.

Trial version of ByteScout PDF SDK can be downloaded for free from our website. It also includes source code samples for VB.NET and other programming languages.

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 Bytescout.PDF ''' <summary> ''' This example demonstrates how to use templates. ''' </summary> Class Program Shared Sub Main() ' Create new document Dim pdfDocument = New Document() pdfDocument.RegistrationName = "demo" pdfDocument.RegistrationKey = "demo" ' Prepare simple template (for example, a logo) and draw it on every page: ' Create template of specified size Dim template = New GraphicsTemplate(250, 50) ' Draw the logo template.DrawRectangle(New SolidBrush(New ColorRGB(192, 192, 255)), 0, 0, 250, 50) template.DrawString("My Company Logo", New Font(StandardFonts.TimesBoldItalic, 24), New SolidBrush(), 30, 10) ' Add few pages and draw the prepared template on each one For i As Integer = 0 To 2 Dim page = New Page(PaperFormat.A4) page.Canvas.DrawTemplate(template, 10, 10) pdfDocument.Pages.Add(page) Next ' Save document to file pdfDocument.Save("result.pdf") ' Cleanup pdfDocument.Dispose() ' Open document in default PDF viewer app Process.Start("result.pdf") End Sub End Class

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout PDF SDK Home Page

Explore ByteScout PDF SDK Documentation

Explore Samples

Sign Up for ByteScout PDF SDK 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 PDF SDK Home Page

Explore ByteScout PDF SDK Documentation

Explore Samples

Sign Up for ByteScout PDF SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next