FlowDocumentScrollViewer::MinZoom Property
.NET Framework (current version)
Gets or sets the minimum allowable Zoom level for the FlowDocumentScrollViewer.
Assembly: PresentationFramework (in PresentationFramework.dll)
Property Value
Type: System::DoubleThe minimum allowable Zoom level for the FlowDocumentScrollViewer, interpreted as a percentage. The default is 80.0 (a minimum zoom of 80%).
The following example shows how to set the MinZoom 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 MinZoom property programmatically.
.NET Framework
Available since 3.0
Available since 3.0
Show: