Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / PageCollection Class / Add Method / Add(SizeF) Method
The size of the new page, in points.

In This Topic
    Add(SizeF) Method
    In This Topic
    Creates a new Page with the specified size and adds it to the end of the document.
    Syntax
    'Declaration
     
    Public Overloads Function Add( _
       ByVal pageSize As System.Drawing.SizeF _
    ) As Page
    public Page Add( 
       System.Drawing.SizeF pageSize
    )

    Parameters

    pageSize
    The size of the new page, in points.

    Return Value

    The newly created page.
    Remarks

    You can also add pages to a GcPdfDocument by calling the GcPdfDocument.NewPage method.

    See Also