CorrectHangulEndings Property

Microsoft Word Visual Basic

CorrectHangulEndings Property

       

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

expression.CorrectHangulEndings

expression   Required. An expression that returns a Find object.

Remarks

For more information on using Microsoft Word with East Asian languages, see Word features for East Asian languages.

Example

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

With Selection.Find
    .Forward = True
    .Wrap = wdFindContinue
    .Format = False
    .CorrectHangulEndings = True
End With