Font.Embedded Property (PowerPoint)
Determines whether the specified font is embedded in the presentation. Read-only.
Syntax
expression .Embedded
expression A variable that represents an Font object.
Return Value
MsoTriState
Remarks
The value of the Embedded property can be one of these MsoTriState constants.
Constant |
Description |
---|---|
msoFalse |
The specified font is not embedded in the presentation. |
msoTrue |
The specified font is embedded in the presentation. |
Example
This example checks each font used in the active presentation to determine whether it is 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