ToolsSpelling

Syntax

ToolsSpelling

Remarks

Checks spelling in the current selection or, if there isn't a selection, checks spelling from the location of the insertion point to the end of the document.

Example

This example asks whether or not to check spelling, and then checks spelling if the user chooses the Yes button:


ans = MsgBox("Check spelling now?", 3)
If ans = -1 Then
    StartOfDocument
    ToolsSpelling
End If

See Also

ToolsOptionsSpelling, ToolsSpellSelection