Share via


AutoCorrect.CorrectTableCells Property

Word Developer Reference

True to automatically capitalize the first letter of table cells. Read/write Boolean.

Syntax

expression.CorrectTableCells

expression   An expression that returns an AutoCorrect object.

Example

This example disables automatic capitalization of the first letter typed within table cells.

Visual Basic for Applications
  Sub AutoCorrectFirstLetterOfTableCells()
    Application.AutoCorrect.CorrectTableCells = False
End Sub

See Also