DocumentBase.Windows プロパティ
Sales.doc:1、Sales.doc:2 など、すべての文書ウィンドウを表す Windows コレクションを取得します。
名前空間: Microsoft.Office.Tools.Word
アセンブリ: Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)
構文
'宣言
Public ReadOnly Property Windows As Windows
public Windows Windows { get; }
プロパティ値
型 : Microsoft.Office.Interop.Word.Windows
すべての文書ウィンドウを表す Windows コレクション。
例
文書ウィンドウを 2 つ新規作成し、Windows プロパティを使用して、すべての文書ウィンドウを画面の左上から並べて表示するコード例を次に示します。この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。
Private Sub DocumentWindows()
Dim window1 As Word.Window = Me.Windows.Add()
Dim window2 As Word.Window = Me.Windows.Add()
Dim top As Integer = 10
Dim left As Integer = 10
Dim window As Word.Window
For Each window In Me.Windows
window.Top = top
window.Left = left
top += 10
left += 10
Next window
End Sub
private void DocumentWindows()
{
Word.Window window1 = this.Windows.Add(ref missing);
Word.Window window2 = this.Windows.Add(ref missing);
int top = 10;
int left = 10;
foreach (Word.Window window in this.Windows)
{
window.Top = top;
window.Left = left;
top += 10;
left += 10;
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。