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
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.