Find.CorrectHangulEndings Property

Word Developer Reference

True if Microsoft Word automatically corrects Hangul endings when replacing Hangul text. Read/write Boolean.

Syntax

expression.CorrectHangulEndings

expression   An expression that returns a Find object.

Example

This example sets Microsoft Word to automatically correct Hangul endings when replacing Hangul text.

Visual Basic for Applications
  With Selection.Find
    .Forward = True
    .Wrap = wdFindContinue
    .Format = False
    .CorrectHangulEndings = True
End With

See Also