Range.Words Property
Word Developer Reference |
Returns a Words collection that represents all the words in a range. Read-only.
Syntax
expression.Words
expression A variable that represents a Range object.
Remarks
Punctuation and paragraph marks in a document are included in the Words collection.
For information about returning a single member of a collection, see Returning an Object from a Collection.
Example
This example displays the number of words in the selection. Paragraphs marks, partial words, and punctuation are included in the count.
Visual Basic for Applications |
---|
|
This example steps through the words in myRange (which spans from the beginning of the active document to the end of the selection) and deletes the word "Franklin" (including the trailing space) wherever it occurs in the range.
Visual Basic for Applications |
---|
|
See Also