Click or drag to resize

PdfWebControl.CreateDocument Method (String, Int32, PdfPageSize)

Create and load a new blank PDF document.

Namespace:  RadPdf.Web.UI
Assembly:  RadPdfStandard (in RadPdfStandard.dll) Version: 4.1.0.0 (4.1.0.0)
Syntax
public int CreateDocument(
	string documentFileName,
	int pageCount,
	PdfPageSize pageSize
)

Parameters

documentFileName
Type: System.String
File name of PDF to be used when PDF is downloaded
pageCount
Type: System.Int32
The number of pages in the new blank document
pageSize
Type: RadPdf.Data.Document.Pages.PdfPageSize
The size of each page in the new blank document

Return Value

Type: Int32
Document ID
Remarks

documentFileName does not need to be unique.

Examples
The following aspx and code behind files use the CreateDocument method to open a new document with 1 Letter sized page.
C#
using System;
using System.IO;

partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            //Load a new blank 1 page PDF into RAD PDF
            this.PdfWebControl1.CreateDocument("Document Name", 1, PdfPageSize.Letter);
        }
    }
}
XML
<%@ Page Language="C#" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="RadPdf" Namespace="RadPdf.Web.UI" TagPrefix="radPdf" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>RAD PDF Sample</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <radPdf:PdfWebControl id="PdfWebControl1" runat="server" height="600px" width="100%" />
    </div>
    </form>
</body>
</html>
See Also
This website uses cookies to identify your session and other necessary functions. By using this website, you are agreeing to our Terms of Use and Privacy Policy (updated April 26 2021).
Learn About Cookies
Got it!