Sentences Interface

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

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
<GuidAttribute("0002095B-0000-0000-C000-000000000046")> _
Public Interface Sentences _
    Inherits IEnumerable
'Usage
Dim instance As Sentences
[GuidAttribute("0002095B-0000-0000-C000-000000000046")]
public interface Sentences : IEnumerable

Remarks

Use the Sentences property of a Selection, Range , or Document object to return the Sentences collection.

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 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.

See Also

Reference

Sentences Members

Microsoft.Office.Interop.Word Namespace