Find.CorrectHangulEndings property (Word)

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.

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

See also

Find Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.