FlowDocumentReader.ZoomIncrement 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
확대/축소 증분을 가져오거나 설정합니다.
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
속성 값
현재 확대/축소 증분이며, 백분율로 해석됩니다. 기본값은 10.0(10%씩 확대/축소)입니다.
예제
다음 예제에서는 설정 하는 방법의 ZoomIncrement 특성입니다.
<FlowDocumentReader
IsFindEnabled="True"
IsPrintEnabled="True"
MinZoom="50" MaxZoom="1000"
Zoom="120" ZoomIncrement="5"
>
<FlowDocument>
<Paragraph>
Flow content...
</Paragraph>
</FlowDocument>
</FlowDocumentReader>
다음 예제에서는 설정 하는 방법의 ZoomIncrement 속성 프로그래밍 방식으로 합니다.
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
설명
확대/축소 증분은 각각 또는 명령이 Zoom 실행될 때 IncreaseZoom 수준이 증가하거나 DecreaseZoom 감소하는 백분율입니다.
기본 FlowDocumentReader UI(사용자 인터페이스)에는 확대/축소 수준을 조정하기 위한 슬라이더뿐만 아니라 확대/축소를 늘리거나 줄이는 단추를 제공하는 확대/축소 컨트롤이 포함되어 있습니다. 다음 그림에서는 기본 UI를 사용하는 확대/축소 컨트롤을 FlowDocumentReader 보여 줍니다.
종속성 속성 정보
식별자 필드 | ZoomIncrementProperty |
메타 데이터 속성 설정 true |
없음 |