Options.AutoFormatAsYouTypeFormatListItemBeginning Property

Word Developer Reference

True if Word repeats character formatting applied to the beginning of a list item to the next list item. Read/write Boolean.

Syntax

expression.AutoFormatAsYouTypeFormatListItemBeginning

expression   A variable that represents an Options collection.

Example

This example sets Word to automatically repeat character formatting at the beginning of list items.

Visual Basic for Applications
  Options.AutoFormatAsYouTypeFormatListItemBeginning = True

This example returns the status of the Format beginning of list item like the one before it option in the AutoFormat As You Type tab in the AutoCorrect dialog box (Options menu).

Visual Basic for Applications
  Dim blnAutoFormat as Boolean

blnAutoFormat = _ Options.AutoFormatAsYouTypeFormatListItemBeginning

See Also