DocumentBase.Sentences プロパティ
文書内のすべての文を表す Sentences コレクションを取得します。
名前空間: Microsoft.Office.Tools.Word
アセンブリ: Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)
構文
'宣言
Public ReadOnly Property Sentences As Sentences
public Sentences Sentences { get; }
プロパティ値
型 : Microsoft.Office.Interop.Word.Sentences
文書内のすべての文を表す Sentences コレクション。
例
文書に 2 つの文を追加し、文書内の文の数を示すメッセージを表示するコード例を次に示します。この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。
Private Sub DocumentSentences()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Me.Paragraphs(1).Range.Text = "This is sample text." & _
" There are two sentences in this document."
MessageBox.Show("Total sentences: " & Me.Sentences.Count.ToString())
End Sub
private void DocumentSentences()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
this.Paragraphs[1].Range.Text = "This is sample text." +
" There are two sentences in this document.";
MessageBox.Show("Total sentences: " +
this.Sentences.Count.ToString());
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。