Represents a page.

For a list of all members of this type, see Page Members


System.Object
public class Page : Object 

Remarks

This class can be used to create pages to add to your Document.

Example

The following example creates a new page using a PageDimensions to set the margins of that page. It then places a label on the page and rotates the page 90 degrees.

[Visual Basic]
Imports System
Imports ceTe.DynamicPDF
Imports ceTe.DynamicPDF.PageElements

Module MyModule
        
    Sub Main()
        
        ' Create a PDF Document
        Dim MyDocument As Document = New Document 
        
        ' Create a page dimensions object and set the margins
        Dim dimensions As PageDimensions = New PageDimensions(PageSize.Letter, PageOrientation.Portrait)
        dimensions.BottomMargin = 50
        dimensions.TopMargin = 50
        dimensions.LeftMargin = 35
        dimensions.RightMargin = 35
    
        ' Create a page using a page dimensions object and add it to the document
        Dim MyPage As Page = New Page(dimensions)
        MyDocument.Pages.Add(MyPage)

        ' Add a label to the page
        MyPage.Elements.Add(New Label("this page was rotated 90 degrees.", 0, 0, 300, 20, Font.Helvetica, 18))

        ' Rotate the page 90 degrees
        MyPage.Rotate = 90

        ' Save the PDF
        MyDocument.Draw("C:\MyDocument.pdf")
        
    End Sub
End Module
[C#]
using System;
using ceTe.DynamicPDF;
using ceTe.DynamicPDF.PageElements;

class MyClass
{
    static void Main()
    {
        // Create a PDF Document
        Document document = new Document();

        // Create a page dimensions object and set the margins
        PageDimensions dimensions = new PageDimensions( PageSize.Letter, PageOrientation.Portrait );
        dimensions.BottomMargin = 50;
        dimensions.TopMargin = 50;
        dimensions.LeftMargin = 35;
        dimensions.RightMargin = 35;

        // Create a page using a page dimensions object and add it to the document
        Page page = new Page( dimensions );
        document.Pages.Add( page );

        // Add a label to the page
        page.Elements.Add( new Label( "This page was rotated 90 degrees.", 0, 0, 300, 20, Font.Helvetica, 18 ) );

        // Rotate the page 90 degrees
        page.Rotate = 90;
    
        // Save the PDF
        document.Draw( @"C:\MyDocument.pdf" );
    }
}

Requirements

Namespace: ceTe.DynamicPDF Namespace

Assembly: DynamicPDF.Generator.[Edition].dll

See Also

Page members | ceTe.DynamicPDF Namespace