Expand Minimize
This topic has not yet been rated - Rate this topic

Document.EmbedTrueTypeFonts Property (Word)

True if Microsoft Word embeds TrueType fonts in a document when it is saved. Read/write Boolean.

expression .EmbedTrueTypeFonts

expression A variable that represents a Document object.

Embedding TrueType fonts allows others to view a document with the same fonts that were used to create it.

This example sets Word to automatically embed TrueType fonts when saving a document, and then it saves the active document.

ActiveDocument.EmbedTrueTypeFonts = True 
ActiveDocument.Save

This example returns the current status of the Embed TrueType fonts check box in the Save options area on the Save tab in the Options dialog box.

temp = ActiveDocument.EmbedTrueTypeFonts
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.