Condividi tramite


Proprietà DocumentBase.Words

Ottiene una raccolta di Microsoft.Office.Interop.Word.Words che rappresenta tutte le parole del documento.

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 Words As Words
public Words Words { get; }

Valore proprietà

Tipo: Microsoft.Office.Interop.Word.Words
Raccolta di Microsoft.Office.Interop.Word.Words che rappresenta tutte le parole del documento.

Note

I segni di paragrafo e di punteggiatura presenti in un documento sono inclusi nella raccolta di Microsoft.Office.Interop.Word.Words.

Esempi

Nell'esempio di codice riportato di seguito viene illustrato come aggiungere una riga di testo al documento e come utilizzare la proprietà Words per impostare il colore della prima parola del documento su blu.Per utilizzare questo esempio, eseguirlo dalla classe ThisDocument in un progetto a livello di documento.

Private Sub DocumentWords()
    Dim start As Object = 0
    Dim [end] As Object = 0
    Dim range1 As Word.Range = Me.Range(start, [end])
    range1.Text = "This is the first sentence in the document."

    Me.Words.First.Font.Color = Word.WdColor.wdColorBlue
End Sub 
private void DocumentWords()
{
    object start = 0;
    object end = 0;
    Word.Range range1 = this.Range(ref start, ref end);
    range1.Text = "This is the first sentence in the document.";

    this.Words.First.Font.Color = Word.WdColor.wdColorBlue;
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

DocumentBase Classe

Spazio dei nomi Microsoft.Office.Tools.Word