FlowDocumentPageViewer.MaxZoom Property
.NET Framework 3.0
Gets or sets the maximum allowable Zoom level for the FlowDocumentPageViewer. This is a dependency property.
Namespace: System.Windows.Controls
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
/** @property */ public double get_MaxZoom () /** @property */ public void set_MaxZoom (double value)
public function get MaxZoom () : double public function set MaxZoom (value : double)
<object MaxZoom="double" .../>
Property Value
The maximum allowable zoom level for the FlowDocumentPageViewer. This property is interpreted as a percentage. The default value is 200.0 (a maximum zoom of 200%).The following example shows how to use this property.
<FlowDocumentPageViewer MinZoom="50" MaxZoom="1000" Zoom="120" ZoomIncrement="5" > <FlowDocument> <Paragraph> Flow content... </Paragraph> </FlowDocument> </FlowDocumentPageViewer>
FlowDocumentPageViewer flowDocPageViewer = new FlowDocumentPageViewer(); // Set zoom between 50% and 1000%. flowDocPageViewer.MinZoom = 50; flowDocPageViewer.MaxZoom = 1000; // Set the zoom increment to 5%. flowDocPageViewer.ZoomIncrement = 5; // Set the initial zoom to 120%. flowDocPageViewer.Zoom = 120; FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("Flow content..."))); flowDocPageViewer.Document = flowDoc;
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.