FlowDocument::MaxPageHeight Property
Gets or sets the maximum height for pages in a FlowDocument.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
[TypeConverterAttribute(typeof(LengthConverter))] public: property double MaxPageHeight { double get (); void set (double value); }
<object MaxPageHeight="double"/> - or - <object MaxPageHeight="qualifiedDouble"/>
XAML Values
Property Value
Type: System::DoubleThe maximum height, in device independent pixels, for pages in the FlowDocument. The default is Double::PositiveInfinity (no maximum page height).
If viewed on a continuum, the MinPageHeight property takes precedence over the MaxPageHeight property, which in turn takes precedence over the PageHeight property. If all three properties are set on a given page, this is the order in which the properties are evaluated.
This property has no effect when PageHeight is set to Double::NaN (auto).
The following example shows how to set the MaxPageHeight attribute of a FlowDocument element.
<FlowDocumentReader> <FlowDocument PageHeight="Auto" PageWidth="Auto" MinPageHeight="3in" MinPageWidth="5in" MaxPageHeight="6in" MaxPageWidth="10in" > <Paragraph Background="BlanchedAlmond"> This uses automatic page sizing with minimum page size of 3 by 5 inches, and a maximum page size of 6 by 10 inches. </Paragraph> </FlowDocument> </FlowDocumentReader>
The following example shows how to set the MaxPageHeight property programmatically.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.