The sample shows instructions and algorithm of how to set superscript and subscript with pdf sdk and how to make it run in your C# application. What is ByteScout PDF Suite? It is the bundle that provides six different SDK libraries 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 help you to set superscript and subscript with pdf sdk in your C# application.
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 PDF Suite for set superscript and subscript with pdf sdk below and use it in your application. Just copy and paste the code into your C# application’s code and follow the instructions. Further improvement of the code will make it more robust.
Trial version of ByteScout PDF 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)
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); } } }
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: