FlowDocumentScrollViewer.MaxZoom 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Zoom에서 허용되는 최대 FlowDocumentScrollViewer 수준을 가져오거나 설정합니다.
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
속성 값
Zoom에서 허용되는 최대 FlowDocumentScrollViewer 수준으로, 백분율로 해석됩니다. 기본값은 200.0(최대 200% 확대)입니다.
예제
다음 예제에서는 설정 하는 방법의 MaxZoom 특성입니다.
<FlowDocumentScrollViewer
HorizontalScrollBarVisibility="Auto"
VerticalScrollBarVisibility="Auto"
IsSelectionEnabled="True"
IsToolBarVisible="True"
MinZoom="50" MaxZoom="1000"
Zoom="120" ZoomIncrement="5"
>
<FlowDocument>
<Paragraph>
Flow content...
</Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
다음 예제에서는 설정 하는 방법의 MaxZoom 속성 프로그래밍 방식으로 합니다.
FlowDocumentScrollViewer flowDocScrollViewer = new FlowDocumentScrollViewer();
// Enable content selection.
flowDocScrollViewer.IsSelectionEnabled = true;
// Enable the toolbar.
flowDocScrollViewer.IsToolBarVisible = true;
// Set zoom between 50% and 1000%.
flowDocScrollViewer.MinZoom = 50;
flowDocScrollViewer.MaxZoom = 1000;
// Set the zoom increment to 5%.
flowDocScrollViewer.ZoomIncrement = 5;
// Set the initial zoom to 120%.
flowDocScrollViewer.Zoom = 120;
FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("Flow content...")));
flowDocScrollViewer.Document = flowDoc;
Dim flowDocScrollViewer As New FlowDocumentScrollViewer()
With flowDocScrollViewer
' Enable content selection.
.IsSelectionEnabled = True
' Enable the toolbar.
.IsToolBarVisible = True
' Set zoom between 50% and 1000%.
.MinZoom = 50
.MaxZoom = 1000
' Set the zoom increment to 5%.
.ZoomIncrement = 5
' Set the initial zoom to 120%.
.Zoom = 120
Dim flowDoc As New FlowDocument(New Paragraph(New Run("Flow content...")))
.Document = flowDoc
End With
설명
종속성 속성 정보
식별자 필드 | MaxZoomProperty |
메타 데이터 속성 설정 true |
없음 |