The coding instructions are formulated to help you to try-out the features without the requirement to write your own code. ByteScout PDF Suite can create bookmarks for navigation in pdf with pdf sdk. It can be applied from VBScript. ByteScout PDF Suite is the set that includes 6 SDK products to work with PDF from generating rich PDF reports to extracting data from PDF documents and converting them to HTML. This bundle includes PDF (Generator) SDK, PDF Renderer SDK, PDF Extractor SDK, PDF to HTML SDK, PDF Viewer SDK and PDF Generator SDK for Javascript.
The following code snippet for ByteScout PDF Suite works best when you need to quickly create bookmarks for navigation in pdf with pdf sdk in your VBScript application. IF you want to implement the functionality, just copy and paste this code for VBScript below into your code editor with your app, compile and run your application. Check VBScript sample code samples to see if they respond to your needs and requirements for the project.
You can download free trial version of ByteScout PDF Suite from our website to see and try many others source code samples for VBScript.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
' This example demonstrates how to create document outlines (bookmarks). ' Create Bytescout.PDF.Document object Set pdfDocument = CreateObject("Bytescout.PDF.Document") pdfDocument.RegistrationName = "demo" pdfDocument.RegistrationKey = "demo" Set comHelpers = pdfDocument.ComHelpers Set font = comHelpers.CreateStandardFont(comHelpers.STANDARDFONTS_TIMES, 18) Set brush = comHelpers.CreateSolidBrush(comHelpers.CreateColorGray(0)) ' Create pages For i = 0 To 2 Set newPage = comHelpers.CreatePage(comHelpers.PAPERFORMAT_A4) newPage.Canvas.DrawString "Page " & (i + 1), (font), (brush), 20, 20 pdfDocument.Pages.Add(newPage) Next ' Create outlines: Set destination1 = comHelpers.CreateDestination(pdfDocument.Pages.Item(0), 0) Set outline1 = comHelpers.CreateOutline_2("Page 1", (destination1)) pdfDocument.Outlines.Add(outline1) ' Example of sub-bookmark Set destination2 = comHelpers.CreateDestination(pdfDocument.Pages.Item(1), 0) Set outline2 = comHelpers.CreateOutline_2("Page 2", (destination2)) pdfDocument.Outlines.Item(0).Kids.Add(outline2) Set destination3 = comHelpers.CreateDestination(pdfDocument.Pages.Item(2), 0) Set outline3 = comHelpers.CreateOutline_2("Page 3", (destination3)) pdfDocument.Outlines.Add(outline3) ' Force PDF viewer to show Bookmarks panel at start up. pdfDocument.PageMode = comHelpers.PAGEMODE_OUTLINES ' Save document to file pdfDocument.Save("result.pdf") ' Open document in default PDF viewer app Set shell = CreateObject("WScript.Shell") shell.Run "result.pdf", 1, false
60 Day Free Trial or Visit ByteScout PDF Suite Home Page
Explore ByteScout PDF Suite Documentation
Explore Samples
Sign Up for ByteScout PDF Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout PDF Suite Home Page
Explore ByteScout PDF Suite Documentation
Explore Samples
Sign Up for ByteScout PDF Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: