FlowDocumentScrollViewer::ZoomIncrement Property
.NET Framework (current version)
Gets or sets the zoom increment.
Assembly: PresentationFramework (in PresentationFramework.dll)
Property Value
Type: System::DoubleThe current zoom increment, interpreted as a percentage. The default is 10.0 (zoom increments by 10%).
The zoom increment is the percentage by which the Zoom level is increased or decreased when the IncreaseZoom or DecreaseZoom commands are executed, respectively.
Identifier field | |
Metadata properties set to true | None |
The following example shows how to set the ZoomIncrement 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 ZoomIncrement property programmatically.
.NET Framework
Available since 3.0
Available since 3.0
Show: