Selection Object
Word Developer Reference |
Represents the current selection in a window or pane. A selection represents either a selected (or highlighted) area in the document, or it represents the insertion point if nothing in the document is selected. There can be only one Selection object per document window pane, and only one Selection object in the entire application can be active.
Remarks
Use the Selection property to return the Selection object. If no object qualifier is used with the Selection property, Microsoft Office Word returns the selection from the active pane of the active document window. The following example copies the current selection from the active document.
Visual Basic for Applications |
---|
|
The following example deletes the selection from the third document in the Documents collection. The document does not have to be active to access its current selection.
Visual Basic for Applications |
---|
|
The following example copies the selection from the first pane of the active document and pastes it into the second pane.
Visual Basic for Applications |
---|
|
The Text property is the default property of the Selection object. Use this property to set or return the text in the current selection. The following example assigns the text in the current selection to the variable strTemp
, removing the last character if it is a paragraph mark.
Visual Basic for Applications |
---|
|
The Selection object has various methods and properties with which you can collapse, expand, or otherwise change the current selection. The following example moves the insertion point to the end of the document and selects the last three lines.
Visual Basic for Applications |
---|
|
The Selection object has various methods and properties with which you can edit selected text in a document. The following example selects the first sentence in the active document and replaces it with a new paragraph.
Visual Basic for Applications |
---|
|
The following example deletes the last paragraph of the first document in the Documents collection and pastes it at the beginning of the second document.
Visual Basic for Applications |
---|
|
The Selection object has various methods and properties with which you can change the formatting of the current selection. The following example changes the font of the current selection from Times New Roman to Tahoma.
Visual Basic for Applications |
---|
|
Use properties like Flags, Information, and Type to return information about the current selection. You can use the following example in a procedure to determine whether there is anything selected in the active document; if there is not, the rest of the procedure is skipped.
Visual Basic for Applications |
---|
|
Even when a selection is collapsed to an insertion point, it is not necessarily empty. For example, the Text property will still return the character to the right of the insertion point; this character also appears in the Characters collection of the Selection object. However, calling methods like Cut or Copy from a collapsed selection causes an error.
It is possible for the user to select a region in a document that does not represent contiguous text (for example, when using the ALT key with the mouse). Because the behavior of such a selection can be unpredictable, you may want to include a step in your code that checks the Type property of a selection before performing any operations on it (Selection.Type = wdSelectionBlock
). Similarly, selections that include table cells can also lead to unpredictable behavior. The Information property will tell you if a selection is inside a table (Selection.Information(wdWithinTable) = True
). The following example determines if a selection is normal (for example, it is not a row or column in a table, it is not a vertical block of text); you could use it to test the current selection before performing any operations on it.
Visual Basic for Applications |
---|
|
Because Range objects share many of the same methods and properties as Selection objects, using Range objects is preferable for manipulating a document when there is not a reason to physically change the current selection. For more information about Selection and Range objects, see Working with the Selection object and Working with Range objects.
See Also