PageResize Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Changes size of the page.

Namespace:  Apitron.PDF.Kit.FixedLayout
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public void Resize(
	PageBoundary pageBoundary
)

Parameters

pageBoundary
Type: Apitron.PDF.Kit.FixedLayout.PagePropertiesPageBoundary
The page boundary.
Examples

C#
// create a multipage document with different page sizes (page orientation).
FixedDocument document = new FixedDocument();

// resize 5th page
document.Pages[4].Resize(new PageBoundary(Boundaries.Ledger));
See Also

Reference