Options.AutoFormatAsYouTypeDefineStyles Property

Word Developer Reference

True if Word automatically creates new styles based on manual formatting. Read/write Boolean.

Syntax

expression.AutoFormatAsYouTypeDefineStyles

expression   A variable that represents an Options collection.

Example

This example sets Word to automatically create styles as you type.

Visual Basic for Applications
  Options.AutoFormatAsYouTypeDefineStyles = True

This example returns the status of the Define styles based on your formatting option on the AutoFormat As You Type tab in the AutoCorrect dialog box (Tools menu).

Visual Basic for Applications
  Dim blnAutoFormat as Boolean

blnAutoFormat = Options.AutoFormatAsYouTypeDefineStyles

See Also