Sentences Property Example

This example copies the first sentences in the active document.

ActiveDocument.Sentences(1).Copy

This example deletes the last sentence in the active document.

ActiveDocument.Sentences.Last.Delete

This example displays the number of sentences in the first paragraph in the active document.

MsgBox ActiveDocument.Paragraphs(1).Range _
    .Sentences.Count & " sentences"