Sentences object (Word)

A collection of Range objects that represent all the sentences in a selection, range, or document. There is no Sentence object.

Remarks

Use the Sentences property to return the Sentences collection. The following example displays the number of sentences selected.

MsgBox Selection.Sentences.Count & " sentences are selected"

Use Sentences (Index), where Index is the index number, to return a Range object that represents a sentence. The index number represents the position of a sentence in the Sentences collection. The following example formats the first sentence in the active document.

With ActiveDocument.Sentences(1) 
 .Bold = True 
 .Font.Size = 24 
End With

The Count property for this collection in a document returns the number of items in the main story only. To count items in other stories use the collection with the Range object.

The Add method isn't available for the Sentences collection. Instead, use the InsertAfter or InsertBefore method to add a sentence to a Range object. The following example inserts a sentence after the first sentence in the active document.

ActiveDocument.Sentences(1).InsertAfter "The house is blue. "

Methods

Name
Item

Properties

Name
Application
Count
Creator
First
Last
Parent

See also

Word Object Model Reference

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.