Share via


Font.Embeddable Property

Determines whether the specified font can be embedded in the presentation. Read-only.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
ReadOnly Property Embeddable As MsoTriState
    Get
'Usage
Dim instance As Font
Dim value As MsoTriState

value = instance.Embeddable
MsoTriState Embeddable { get; }

Property Value

Type: Microsoft.Office.Core.MsoTriState
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.

Examples

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.EmbeddableThen

        MsgBox usedFont.Name & ": Embeddable"

    Else

        MsgBox usedFont.Name & ": Not embeddable"

    End If

Next usedFont

See Also

Reference

Font Interface

Font Members

Microsoft.Office.Interop.PowerPoint Namespace