DocumentBase.Words プロパティ
文書内のすべての単語を表す Microsoft.Office.Interop.Word.Words コレクションを取得します。
名前空間: Microsoft.Office.Tools.Word
アセンブリ: Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)
構文
'宣言
Public ReadOnly Property Words As Words
public Words Words { get; }
プロパティ値
型 : Microsoft.Office.Interop.Word.Words
文書内のすべての単語を表す Microsoft.Office.Interop.Word.Words コレクション。
解説
文書内の区切り記号および段落記号も Microsoft.Office.Interop.Word.Words コレクションに格納されます。
例
文書にテキスト行を追加し、Words プロパティを使用して、文書の最初にある単語の色を青にするコード例を次に示します。この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。
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;
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。