Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.1 KB

Excel.Application.SpellingOptions.md

File metadata and controls

46 lines (29 loc) · 1.1 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.SpellingOptions property (Excel)
vbaxl10.chm133284
vbaxl10.chm133284
Excel.Application.SpellingOptions
c3d1970b-1276-9af7-88d6-e8e77bc32095
04/05/2019
medium

Application.SpellingOptions property (Excel)

Returns a SpellingOptions object that represents the spelling options of the application.

Syntax

expression.SpellingOptions

expression A variable that represents an Application object.

Example

In this example, Microsoft Excel checks the setting on the spelling options for ignoring mixed digits, and notifies the user of its status.

Sub MixedDigitCheck() 
 
 ' Determine the setting on spell checking for mixed digits. 
 If Application.SpellingOptions.IgnoreMixedDigits = True Then 
 MsgBox "The spelling options are set to ignore mixed digits." 
 Else 
 MsgBox "The spelling options are set to check for mixed digits." 
 End If 
 
End Sub

[!includeSupport and feedback]