ByteScout PDF SDK - C# - Actions - GoTo - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

ByteScout PDF SDK – C# – Actions – GoTo

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF SDK – C# – Actions – GoTo

ByteScout PDF SDK – C# – Actions – GoTo

Program.cs

using System.Diagnostics;
using Bytescout.PDF;

namespace GoToActionExample
{
    /// <summary>
    /// This example demonstrates how to create a button with GoTo action.
    /// </summary>
    class Program
    {
        static void Main()
        {
            // Create new document
            Document pdfDocument = new Document();
            pdfDocument.RegistrationName = "demo";
            pdfDocument.RegistrationKey = "demo";

            // Add pages
            Page page1 = new Page(PaperFormat.A4);
            pdfDocument.Pages.Add(page1);
            Page page2 = new Page(PaperFormat.A4);
            pdfDocument.Pages.Add(page2);
            
            Font font = new Font(StandardFonts.Times, 18);
            Brush brush = new SolidBrush();
            
            // Mark action target with text
            page2.Canvas.DrawString("Action target", font, brush, 20, 200);
            
            // Create button
            PushButton button = new PushButton(20, 20, 100, 25, "button1");
            button.Caption = "Go To Page 2";
            // Create action to go to page 2 at 200 points from the top
            button.OnActivated = new GoToAction(new Destination(page2, 200));
            
            page1.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);
        }
    }
}


  Click here to get your Free Trial version of the SDK

Tutorials:

prev
next