ByteScout Premium Suite - C# - Set superscript and subscript with pdf sdk - ByteScout

ByteScout Premium Suite – C# – Set superscript and subscript with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – C# – Set superscript and subscript with pdf sdk

How to set superscript and subscript with pdf sdk in C# and ByteScout Premium Suite

This code in C# shows how to set superscript and subscript with pdf sdk with this how to tutorial

Source code documentation samples give simple and easy method to install a needed feature into your application. ByteScout Premium Suite is the bundle that includes twelve SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording. It can set superscript and subscript with pdf sdk in C#.

Want to save time? You will save a lot of time on writing and testing code as you may just take the C# code from ByteScout Premium Suite for set superscript and subscript with pdf sdk below and use it in your application. IF you want to implement the functionality, just copy and paste this code for C# below into your code editor with your app, compile and run your application. This basic programming language sample code for C# will do the whole work for you to set superscript and subscript with pdf sdk.

Trial version of ByteScout Premium Suite is available for free. Source code samples are included to help you with your C# app.

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 SuperscripAndSubscript { /// <summary> /// This example demonstrates how to draw subscript or superscript text adjusting the text baseline. /// </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); Font font = new Font("Arial", 16); Brush brush = new SolidBrush(); StringFormat stringFormat = new StringFormat(); float xPosition = 20; // Draw normal string page.Canvas.DrawString("Normal text ", font, brush, xPosition, 50, stringFormat); xPosition += font.GetTextWidth("Normal text "); // Draw subscript string stringFormat.Rise = -5; page.Canvas.DrawString("Subscript", font, brush, xPosition, 50, stringFormat); xPosition += font.GetTextWidth("Subscript"); // draw superscript string stringFormat.Rise = +5; page.Canvas.DrawString("Superscript", font, brush, xPosition, 50, stringFormat); xPosition += font.GetTextWidth("Superscript"); // Draw the baseline Pen pen = new SolidPen(new ColorRGB(0, 0, 255)); pen.Opacity = 50; page.Canvas.DrawLine(pen, 20, 50 + font.Size, xPosition, 50 + font.Size); // 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