ByteScout PDF SDK - C# - Create Button in PDF Form - ByteScout

ByteScout PDF SDK – C# – Create Button in PDF Form

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF SDK – C# – Create Button in PDF Form

How to create button in PDF form in C# with ByteScout PDF SDK

The tutorial shows how to create button in PDF form in C#

This sample source code below will demonstrate you how to create button in PDF form in C#. ByteScout PDF SDK is the component to help programmers in generating new pdf files, modifying and updating existing pdf documents or pdf forms. Provides support for auto-filling pdf forms, adding text with adjustable font, style, size, font family, new form fields, vector and raster drawings and you can use it to create button in PDF form with C#.

This code snippet below for ByteScout PDF SDK works best when you need to quickly create button in PDF form in your C# application. Follow the instructions from the scratch to work and copy the C# code. Use of ByteScout PDF SDK in C# is also explained in the documentation included along with the product.

Download free trial version of ByteScout PDF SDK from our website with this and other source code samples for C#.

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

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

Program.cs
      
using System.Diagnostics; using Bytescout.PDF; namespace Buttons { /// <summary> /// This example demonstrates how to create a button and decorate it. /// </summary> class Program { static void Main() { // Create new document Document pdfDocument = new Document(); pdfDocument.RegistrationName = "demo"; pdfDocument.RegistrationKey = "demo"; // Add page Page page = new Page(PaperFormat.A4); pdfDocument.Pages.Add(page); // Create a button PushButton button = new PushButton(50, 50, 100, 30, "button1"); button.Caption = "Button"; // Decorate the button with various styles button.BackgroundColor = new ColorRGB(192, 192, 255); button.BorderWidth = 2; button.BorderStyle = BorderStyle.Beveled; button.BorderColor = new ColorRGB(0, 0, 128); button.Font = new Font(StandardFonts.Times, 16); button.FontColor = new ColorRGB(0, 0, 0); button.HighlightingMode = PushButtonHighlightingMode.Outline; // Add button to the page page.Annotations.Add(button); // Save document to file pdfDocument.Save("result.pdf"); // Cleanup pdfDocument.Dispose(); // Open result document in default associated application (for demo purpose) ProcessStartInfo processStartInfo = new ProcessStartInfo("result.pdf"); processStartInfo.UseShellExecute = true; Process.Start(processStartInfo); } } }

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