Condividi tramite


Proprietà DocumentBase.Windows

Ottiene un insieme di Windows che rappresenta tutte le finestre per il documento, ad esempio Sales.doc:1 e Sales.doc:2.

Spazio dei nomi:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

Sintassi

'Dichiarazione
Public ReadOnly Property Windows As Windows
    Get
public Windows Windows { get; }

Valore proprietà

Tipo: Microsoft.Office.Interop.Word.Windows
Insieme di Windows che rappresenta tutte le finestre per il documento.

Esempi

Nell'esempio di codice riportato di seguito viene illustrato come creare due nuove finestre per il documento e come utilizzare la proprietà Windows per affiancare tutte le finestre del documento a partire dalla parte superiore sinistra dello schermo. Per utilizzare questo esempio, eseguirlo dalla classe ThisDocument in un progetto a livello di documento.

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;
    }
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

DocumentBase Classe

Spazio dei nomi Microsoft.Office.Tools.Word