Pane.Zooms プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Zooms#SameCHM各ビュー (標準ビュー、アウトライン ビュー、印刷レイアウト ビューなど) の拡大オプションを表すコレクションを返します。
public:
property Microsoft::Office::Interop::Word::Zooms ^ Zooms { Microsoft::Office::Interop::Word::Zooms ^ get(); };
public Microsoft.Office.Interop.Word.Zooms Zooms { get; }
member this.Zooms : Microsoft.Office.Interop.Word.Zooms
Public ReadOnly Property Zooms As Zooms
プロパティ値
例
次の使用例は、開いている各文書ウィンドウの下書き表示モードでの表示倍率を 100% に設定します。
<span class="label">Dim wndLoop as Window
For Each wndLoop In Windows
wndLoop.ActivePane.</span>
<span class="label">Zooms</span>
<span class="label">(wdNormalView).Percentage = 100Next wndLoop</span>
次の使用例は、印刷レイアウト表示でページ全体を表示できるように表示倍率を設定します。
<span class="label">ActiveDocument.ActiveWindow.Panes(1).</span>
<span class="label">Zooms</span>
<span class="label">(wdPrintView).PageFit = _ wdPageFitFullPage</span>
注釈
コレクションの 1 つのメンバーを返す方法については、「」を参照してください ReturninganObjectfromaCollection#SameCHM。