FlowDocumentScrollViewer::MaxZoom Property
.NET Framework (current version)
Gets or sets the maximum allowable Zoom level for the FlowDocumentScrollViewer.
Assembly: PresentationFramework (in PresentationFramework.dll)
Property Value
Type: System::DoubleThe maximum allowable Zoom level for the FlowDocumentScrollViewer, interpreted as a percentage. The default is 200.0 (a maximum zoom of 200%).
The following example shows how to set the MaxZoom attribute.
<FlowDocumentScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto" IsSelectionEnabled="True" IsToolBarVisible="True" MinZoom="50" MaxZoom="1000" Zoom="120" ZoomIncrement="5" > <FlowDocument> <Paragraph> Flow content... </Paragraph> </FlowDocument> </FlowDocumentScrollViewer>
The following example shows how to set the MaxZoom property programmatically.
.NET Framework
Available since 3.0
Available since 3.0
Show: