Embedded Property
Determines whether the specified font is embedded in the presentation. Read-only MsoTriState.
MsoTriState can be one of these MsoTriState constants. |
msoCTrue |
msoFalse |
msoTriStateMixed |
msoTriStateToggle |
msoTrue The specified font is embedded in the presentation. |
expression.Embedded
expression Required. An expression that returns one of the objects in the Applies To list.
Example
This example checks each font used in the active presentation to determine whether it's embedded in the presentation.
For Each usedFont In Presentations(1).Fonts
If usedFont.Embedded Then
MsgBox usedFont.Name & ": Embedded"
Else
MsgBox usedFont.Name & ": Not embedded"
End If
Next usedFont