ByteScout Premium Suite - C# - Create button in pdf form with pdf sdk - ByteScout

ByteScout Premium Suite – C# – Create button in pdf form with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – C# – Create button in pdf form with pdf sdk

How to create button in pdf form with pdf sdk in C# with ByteScout Premium Suite

Learn to create button in pdf form with pdf sdk in C#

An easy to understand guide on how to create button in pdf form with pdf sdk in C# with this source code sample. ByteScout Premium Suite can create button in pdf form with pdf sdk. It can be applied from C#. ByteScout Premium Suite is the set that includes 12 SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording.

Want to quickly learn? This fast application programming interfaces of ByteScout Premium Suite for C# plus the guidelines and the code below will help you quickly learn how to create button in pdf form with pdf sdk. Simply copy and paste in your C# project or application you and then run your app! If you want to use these C# sample examples in one or many applications then they can be used easily.

You can download free trial version of ByteScout Premium Suite 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 Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium 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 Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next