Skip to content

Latest commit

 

History

History
53 lines (30 loc) · 1.05 KB

Word.Options.IgnoreUppercase.md

File metadata and controls

53 lines (30 loc) · 1.05 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Options.IgnoreUppercase property (Word)
vbawd10.chm162988312
vbawd10.chm162988312
Word.Options.IgnoreUppercase
4eff2832-3c66-0274-5403-d2fd8d31d04d
06/08/2017
medium

Options.IgnoreUppercase property (Word)

True if words in all uppercase letters are ignored while checking spelling. Read/write Boolean.

Syntax

expression. IgnoreUppercase

expression An expression that returns an Options object.

Example

This example sets Word to ignore words in all uppercase letters, and then it checks spelling in the active document.

Options.IgnoreUppercase = True 
ActiveDocument.CheckSpelling

This example returns the current status of the Ignore words in UPPERCASE option on the Spelling & Grammar tab in the Options dialog box.

Dim blnTemp As Boolean 
 
blnTemp = Options.IgnoreUppercase

See also

Options Object

[!includeSupport and feedback]