DocumentPaginator.PageSize Property
.NET Framework 4.5
When overridden in a derived class, gets or sets the suggested width and height of each page.
Namespace: System.Windows.Documents
Assembly: PresentationCore (in PresentationCore.dll)
The DocumentPaginator may override the value of this property. Users should check DocumentPage.Size.
The following example shows how to set the PageSize.
// ------------------------ CreateFixedDocument ----------------------- /// <summary> /// Creates an empty FixedDocument.</summary> /// <returns> /// An empty FixedDocument without any content.</returns> private FixedDocument CreateFixedDocument() { FixedDocument fixedDocument = new FixedDocument(); fixedDocument.DocumentPaginator.PageSize = new Size(96 * 8.5, 96 * 11); return fixedDocument; }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.