ByteScout PDF Suite - VBScript - Use radio button in pdf form with pdf sdk - ByteScout

ByteScout PDF Suite – VBScript – Use radio button in pdf form with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF Suite – VBScript – Use radio button in pdf form with pdf sdk

How to use radio button in pdf form with pdf sdk in VBScript and ByteScout PDF Suite

Learn to use radio button in pdf form with pdf sdk in VBScript

We made thousands of pre-made source code pieces for easy implementation in your own programming projects. 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. It can be applied to use radio button in pdf form with pdf sdk using VBScript.

Want to save time? You will save a lot of time on writing and testing code as you may just take the VBScript code from ByteScout PDF Suite for use radio button in pdf form with pdf sdk below and use it in your application. Just copy and paste the code into your VBScript application’s code and follow the instructions. Enjoy writing a code with ready-to-use sample codes in VBScript.

Our website gives trial version of ByteScout PDF Suite for free. It also includes documentation and source code samples.

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

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

RadioButtons.vbs
      
' This example demonstrates how to create radio buttons. ' Create Bytescout.PDF.Document object Set pdfDocument = CreateObject("Bytescout.PDF.Document") pdfDocument.RegistrationName = "demo" pdfDocument.RegistrationKey = "demo" Set comHelpers = pdfDocument.ComHelpers ' Add page Set page1 = comHelpers.CreatePage(comHelpers.PAPERFORMAT_A4) pdfDocument.Pages.Add(page1) Set timesFont = comHelpers.CreateStandardFont(comHelpers.STANDARDFONTS_TIMES, 12) Set blackBrush = comHelpers.CreateSolidBrush(comHelpers.CreateColorGray(0)) ' Add a group of radio buttons Set radioButton1 = comHelpers.CreateRadioButton(20, 20, 15, 15, "group1", "value1") Set radioButton2 = comHelpers.CreateRadioButton(20, 40, 15, 15, "group1", "value2") page1.Annotations.Add(radioButton1) page1.Annotations.Add(radioButton2) ' Add labels page1.Canvas.DrawString "Value 1.1", (timesFont), (blackBrush), 40, 20 page1.Canvas.DrawString "Value 1.2", (timesFont), (blackBrush), 40, 40 ' Add another independent group of radio buttons Set radioButton3 = comHelpers.CreateRadioButton(120, 20, 15, 15, "group2", "value3") Set radioButton4 = comHelpers.CreateRadioButton(120, 40, 15, 15, "group2", "value4") page1.Annotations.Add(radioButton3) page1.Annotations.Add(radioButton4) ' Add labels page1.Canvas.DrawString "Value 2.1", (timesFont), (blackBrush), 140, 20 page1.Canvas.DrawString "Value 2.2", (timesFont), (blackBrush), 140, 40 ' 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

ON-PREMISE OFFLINE SDK

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

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 Suite Home Page

Explore ByteScout PDF Suite Documentation

Explore Samples

Sign Up for ByteScout PDF Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next