Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

FlowDocumentReader.Zoom Property

Definition

Namespace:
System.Windows.Controls
Assembly:
PresentationFramework.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the current zoom level.

public:
 property double Zoom { double get(); void set(double value); };
public double Zoom { get; set; }
member this.Zoom : double with get, set
Public Property Zoom As Double

Property Value

The current zoom level, interpreted as a percentage. The default value 100.0 (zoom level of 100%).

Examples

The following example shows how to set the Zoom 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 Zoom property programmatically.

FlowDocumentReader flowDocRdr = new FlowDocumentReader();

// Enable find...
flowDocRdr.IsFindEnabled = true;
// Enable printing...
flowDocRdr.IsPrintEnabled = true;
// Set zoom between 50% and 1000%.
flowDocRdr.MinZoom = 50;
flowDocRdr.MaxZoom = 1000;
// Set the zoom increment to 5%.
flowDocRdr.ZoomIncrement = 5;
// Set the initial zoom to 120%.
flowDocRdr.Zoom = 120;

FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("Flow content...")));
flowDocRdr.Document = flowDoc;
Dim flowDocRdr As New FlowDocumentReader()

' Enable find...
flowDocRdr.IsFindEnabled = True
' Enable printing...
flowDocRdr.IsPrintEnabled = True
' Set zoom between 50% and 1000%.
flowDocRdr.MinZoom = 50
flowDocRdr.MaxZoom = 1000
' Set the zoom increment to 5%.
flowDocRdr.ZoomIncrement = 5
' Set the initial zoom to 120%.
flowDocRdr.Zoom = 120

Dim flowDoc As New FlowDocument(New Paragraph(New Run("Flow content...")))
flowDocRdr.Document = flowDoc

Remarks

Default FlowDocumentReader user interface (UI) includes a zoom control that provides buttons for increasing or decreasing the zoom, as well as a slider for adjusting the zoom level. The following figure shows the zoom controls on a FlowDocumentReader with default UI.

πŸ‘ FlowDocumentReader content zoom

The zoom level is constrained by the values of the MinZoom and MaxZoom properties.

Dependency Property Information

Item Value
Identifier field ZoomProperty
Metadata properties set to true None

Applies to

See also


Feedback

Was this page helpful?