Font.Embeddable property (PowerPoint)
Determines whether the specified font can be embedded in the presentation. Read-only.
Syntax
expression. Embeddable
expression A variable that represents an Font object.
Return value
MsoTriState
Remarks
The value of the Embeddable property can be one of these MsoTriState constants.
Constant | Description |
---|---|
msoFalse | The specified font cannot be embedded in the presentation. |
msoTrue | The specified font can be embedded in the presentation. |
Example
This example checks each font used in the active presentation to determine whether it is embeddable in the presentation.
For Each usedFont In Presentations(1).Fonts
If usedFont.Embeddable Then
MsgBox usedFont.Name & ": Embeddable"
Else
MsgBox usedFont.Name & ": Not embeddable"
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.