Skip to content

Latest commit

 

History

History
50 lines (30 loc) · 1.15 KB

Word.Document.SaveSubsetFonts.md

File metadata and controls

50 lines (30 loc) · 1.15 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.SaveSubsetFonts property (Word)
vbawd10.chm158007349
vbawd10.chm158007349
Word.Document.SaveSubsetFonts
01210b29-f346-e513-6876-3dab30b940e1
06/08/2017
medium

Document.SaveSubsetFonts property (Word)

True if Microsoft Word saves a subset of the embedded TrueType fonts with the document. Read/write Boolean.

Syntax

expression. SaveSubsetFonts

expression A variable that represents a Document object.

Remarks

If fewer than 32 characters of a TrueType font are used in a document, Word embeds the subset (only the characters used) in the document. If more than 32 characters are used, Word embeds the entire font.

Example

This example sets a document named "MyDoc" to save only a subset of its embedded TrueType fonts (when just a few characters are used), and then it saves "MyDoc."

With Documents("MyDoc") 
 .EmbedTrueTypeFonts = True 
 .SaveSubsetFonts = True 
 .Save 
End With

See also

Document Object

[!includeSupport and feedback]