EmbedLinguisticData Property

Microsoft Word Visual Basic

EmbedLinguisticData Property

       

True for Microsoft Word to embed speech and handwriting so that data can be converted back to speech or handwriting and to store East Asian IME keystrokes to improve correction; also controls text service data received from devices connected to Microsoft Office using the Windows Text Service Framework Application Programming Interface. Read/write Boolean.

expression.EmbedLinguisticData

expression   Required. An expression that returns a Document object.

Example

This example embeds into the active document any speech or handwriting that may exist in the document.

Sub EmbedSpeechHandwriting()
    ActiveDocument.EmbedLinguisticData = True
End Sub