Document.HyphenateCaps Property

Word Developer Reference

True if words in all capital letters can be hyphenated. Read/write Boolean.

Syntax

expression.HyphenateCaps

expression   A variable that represents a Document object.

Example

This example enables automatic hyphenation for the active document and allows capitalized words to be hyphenated.

Visual Basic for Applications
  With ActiveDocument
    .AutoHyphenation = True
    .HyphenateCaps = True
End With

See Also