Border

Draws a border around the pages.

public class Border
Public Class Border

Inheritance: ObjectBorder

Licensing Info

This class is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:

Examples

The following examples demonstrates, how to set a border for pages while doing the multi page print.
Imports ceTe.DynamicPDF.Printing
Imports System.Drawing

Module MyModule
	Sub Main()
		' Create a print job containing the first four pages of the PDF.
		Dim printJob As New PrintJob(Printer.[Default], "C:\MyDocument.pdf", 1, 4)

		' Creating the object of MultipagePageScaling.
		Dim multipagePageScaling As New MultipagePageScaling(4, 2)

		' Setting the border and its color.
		multipagePageScaling.Border = New Border(Color.Green, 2)

		' Setting the top,left,bottom and right margins.
		multipagePageScaling.Margin = New ceTe.DynamicPDF.Printing.Margin(5, 5, 5, 5)

		' Setting the spacing between pages.
		multipagePageScaling.Spacing = New Spacing(2, 2)

		' If UniformScaling is true then same scaling percentage will be applied to all pages.
		multipagePageScaling.UniformScaling = True

		' Applying the multipage scaling.
		printJob.PrintOptions.Scaling = multipagePageScaling

		' Print the job.
		printJob.Print()
	End Sub
End Module
using System;
using ceTe.DynamicPDF.Printing;
using System.Drawing;

class MyClass
{
	static void Main()
	{
		// Create a print job containing the first four pages of the PDF.
		PrintJob printJob = new PrintJob(Printer.Default, @"C:\MyDocument.pdf", 1, 4);

		// Creating the object of MultipagePageScaling.
		MultipagePageScaling multipagePageScaling = new MultipagePageScaling(4, 2);

		// Setting the border and its color.
		multipagePageScaling.Border = new Border(Color.Green, 2);

		// Setting the top,left,bottom and right margins.
		multipagePageScaling.Margin = new ceTe.DynamicPDF.Printing.Margin(5, 5, 5, 5);

		// Setting the spacing between pages.
		multipagePageScaling.Spacing = new Spacing(2, 2);

		// If UniformScaling is true then same scaling percentage will be applied to all pages.
		multipagePageScaling.UniformScaling = true;

		// Applying the multipage scaling.
		printJob.PrintOptions.Scaling = multipagePageScaling;

		// Print the job.
		printJob.Print();
	}
}

Constructors

Border(Color, Int32)Initializes a new instance of the Border class.

Properties

ColorGets or sets the color of the PDF page border.
ThicknessGets or sets the thickness of the PDF page border.

Methods

Equals(Object)Determines whether the specified Object is equal to the current Object .
(Inherited from Object)
GetHashCode()Serves as a hash function for a particular type.
(Inherited from Object)
GetType()Gets the Type of the current instance.
(Inherited from Object)
ToString()Returns a String that represents the current Object .
(Inherited from Object)

See Also

ceTe.DynamicPDF.Printing

In this topic