Determines whether the specified font can be embedded in the presentation. Read-only MsoTriState.
MsoTriState can be one of these MsoTriState constants. |
msoCTrue |
msoFalse |
msoTriStateMixed |
msoTriStateToggle |
msoTrue The specified font can be embedded in the presentation. |
expression.Embeddable
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 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