FlowDocumentReader::MaxZoom Property
.NET Framework (current version)
Gets or sets the maximum allowable Zoom level for the FlowDocumentReader.
Assembly: PresentationFramework (in PresentationFramework.dll)
Property Value
Type: System::DoubleThe maximum allowable Zoom level for the FlowDocumentReader, interpreted as a percentage. The default is 200.0 (maximum zoom of 200%).
The default FlowDocumentReader user interface (UI) includes a slider that can be used to adjust the Zoom level. This property specifies the upper-limit value for the Zoom slider.
Identifier field | |
Metadata properties set to true | None |
The following example shows how to set the MaxZoom 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 MaxZoom property programmatically.
.NET Framework
Available since 3.0
Available since 3.0
Show: