ADD LINE EXAMPLE

The following .NET application has been developed using ABCpdf, ASP.NET, and the C# language.

This ABCpdf example adds two lines to the current PDF page.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Drawing;
using System.Text;
using System.Net;
using System.IO;
using WebSupergoo.ABCpdf8;

namespace ABCpdfExamples
{
    public partial class test : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            // ---- Adds a line to the current page ----
            Doc doc = new Doc();
            doc.Width = 24;
            doc.Color.String = "0 0 255";
            doc.AddLine(-50, 100, 999, 100);
            doc.Color.String = "0 255 0";
            doc.AddLine(-50, 400, 999, 400);
            doc.Save(Server.MapPath("~/Results/Output.pdf"));
            doc.Clear();
        }
    }
}

Add Line

© 1997-2021    Codehacker - All Rights Reserved