FlowDocumentReader.MaxZoom Eigenschaft

Definition

Ruft die höchste zulässige Zoom-Stufe für den FlowDocumentReader ab oder legt diese fest.

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

Eigenschaftswert

Die höchste zulässige Zoom-Stufe für den FlowDocumentReader, interpretiert als Prozentwert. Der Standardwert ist 200,0 (maximaler Zoom von 200 %).

Beispiele

Im folgenden Beispiel wird gezeigt, wie das MaxZoom Attribut festgelegt wird.

<FlowDocumentReader
  IsFindEnabled="True"  
  IsPrintEnabled="True"
  MinZoom="50" MaxZoom="1000"
  Zoom="120" ZoomIncrement="5"
>
  <FlowDocument>
    <Paragraph>
      Flow content...
    </Paragraph>
  </FlowDocument>
</FlowDocumentReader>

Das folgende Beispiel zeigt, wie Sie die MaxZoom-Eigenschaft programmatisch einstellen können.

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

Hinweise

Die Standardbenutzerschnittstelle FlowDocumentReader (UI) enthält einen Schieberegler, der zum Anpassen der Zoom Ebene verwendet werden kann. Diese Eigenschaft gibt den Obergrenzwert für den Zoom Schieberegler an.

Informationen zur Abhängigkeitseigenschaft

Bezeichnerfeld MaxZoomProperty
Metadateneigenschaften auf true festgelegt Keine

Gilt für:

Weitere Informationen