Skip to content

Latest commit

 

History

History
53 lines (30 loc) · 1.33 KB

Word.Options.AutoFormatAsYouTypeReplacePlainTextEmphasis.md

File metadata and controls

53 lines (30 loc) · 1.33 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Options.AutoFormatAsYouTypeReplacePlainTextEmphasis property (Word)
vbawd10.chm162988300
vbawd10.chm162988300
Word.Options.AutoFormatAsYouTypeReplacePlainTextEmphasis
7c01c19a-1c3e-6bea-1979-ebd524bdf981
06/08/2017
medium

Options.AutoFormatAsYouTypeReplacePlainTextEmphasis property (Word)

True if manual emphasis characters are automatically replaced with character formatting as you type. For example, "bold" is changed to " bold " and "underline" is changed to "underline." Read/write Boolean.

Syntax

expression. AutoFormatAsYouTypeReplacePlainTextEmphasis

expression A variable that represents an Options object.

Example

This example turns on the replacement of manual emphasis characters with character formatting.

Options.AutoFormatAsYouTypeReplacePlainTextEmphasis = True

This example returns the status of the Bold and underline with real formatting option on the AutoFormat As You Type tab in the AutoCorrect dialog box (Tools menu).

Dim blnAutoFormat as Boolean 
 
blnAutoFormat = _ 
 Options.AutoFormatAsYouTypeReplacePlainTextEmphasis

See also

Options Object

[!includeSupport and feedback]