FlowDocumentPageViewer.ZoomIncrement 속성

정의

확대/축소 증분을 가져오거나 설정합니다.

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

속성 값

Double

현재 확대/축소 증분이며, 백분율로 해석됩니다. 기본값은 10.0(10%씩 확대/축소)입니다.

예제

다음 예제에서는이 속성을 사용 하는 방법을 보여 있습니다.

<FlowDocumentPageViewer
  MinZoom="50" MaxZoom="1000"
  Zoom="120" ZoomIncrement="5"
>
  <FlowDocument>
    <Paragraph>
      Flow content...
    </Paragraph>
  </FlowDocument>
</FlowDocumentPageViewer>
FlowDocumentPageViewer flowDocPageViewer = new FlowDocumentPageViewer();

// Set zoom between 50% and 1000%.
flowDocPageViewer.MinZoom = 50;
flowDocPageViewer.MaxZoom = 1000;
// Set the zoom increment to 5%.
flowDocPageViewer.ZoomIncrement = 5;
// Set the initial zoom to 120%.
flowDocPageViewer.Zoom = 120;

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

' Set zoom between 50% and 1000%.
flowDocPageViewer.MinZoom = 50
flowDocPageViewer.MaxZoom = 1000
' Set the zoom increment to 5%.
flowDocPageViewer.ZoomIncrement = 5
' Set the initial zoom to 120%.
flowDocPageViewer.Zoom = 120

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

설명

확대/축소 증분은 각각 또는 명령이 Zoom 실행될 때 IncreaseZoom 수준이 증가하거나 DecreaseZoom 감소하는 백분율입니다.

종속성 속성 정보

식별자 필드 ZoomIncrementProperty
메타 데이터 속성 설정 true 없음

적용 대상

추가 정보