FlowDocumentReader::MinZoom Property
.NET Framework (current version)
Gets or sets the minimum allowable Zoom level for the FlowDocumentReader.
Assembly: PresentationFramework (in PresentationFramework.dll)
Property Value
Type: System::DoubleThe minimum allowable Zoom level for the FlowDocumentReader, interpreted as a percentage. The default is 80.0 (minimum zoom of 80%).
The default FlowDocumentReader user interface (UI) includes a slider that can be used to adjust the Zoom level. This property specifies the lower-limit value for the Zoom slider.
Identifier field | |
Metadata properties set to true | None |
The following example shows how to set the MinZoom attribute.
<FlowDocumentReader IsFindEnabled="True" IsPrintEnabled="True" MinZoom="50" MaxZoom="1000" Zoom="120" ZoomIncrement="5" > <FlowDocument> <Paragraph> Flow content... </Paragraph> </FlowDocument> </FlowDocumentReader>
The following example shows how to set the MinZoom property programmatically.
.NET Framework
Available since 3.0
Available since 3.0
Show: