Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.23 KB

Excel.DisplayAutoCorrectOptions.md

File metadata and controls

47 lines (31 loc) · 1.23 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
DisplayAutoCorrectOptions property (Excel Graph)
vbagr10.chm3086995
vbagr10.chm3086995
Excel.DisplayAutoCorrectOptions
9264f123-b3f8-aebc-bfa5-9a3b9be98706
04/10/2019
medium

DisplayAutoCorrectOptions property (Excel Graph)

Allows the user to display or hide the AutoCorrect Options button. The default value is True. Read/write Boolean.

Syntax

expression.DisplayAutoCorrectOptions

expression Required. An expression that returns one of the objects in the Applies To list.

Remarks

The DisplayAutoCorrectOptions property is a Microsoft Office-wide setting. Changing this property in Graph will affect the other Office applications also.

Example

This example determines if the AutoCorrect Options button can be displayed, and notifies the user.

Sub CheckDisplaySetting() 
 
 'Determine setting and notify user. 
 If Application.AutoCorrect.DisplayAutoCorrectOptions = True Then 
 MsgBox "The AutoCorrect Options button can be displayed." 
 Else 
 MsgBox "The AutoCorrect Options button cannot be displayed." 
 End If 
 
End Sub

[!includeSupport and feedback]