Share via


Font.Embeddable Property

PowerPoint Developer Reference

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.

Visual Basic for Applications
  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