Share via


Font.Emboss Property

Determines whether the character format is embossed. Read/write.

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

Syntax

'Declaration
Property Emboss As MsoTriState
    Get
    Set
'Usage
Dim instance As Font
Dim value As MsoTriState

value = instance.Emboss

instance.Emboss = value
MsoTriState Emboss { get; set; }

Property Value

Type: Microsoft.Office.Core.MsoTriState
MsoTriState

Remarks

The value of the Emboss property can be one of these MsoTriState constants.

Constant

Description

msoFalse

The character format is not embossed.

msoTriStateMixed

The specified text range contains both embossed and unembossed characters.

msoTrue

The character format is embossed.

Examples

This example sets the title text on slide one to embossed.

Application.ActivePresentation.Slides(1).Shapes.Title _

    .TextFrame.TextRange.Font.Emboss= msoTrue

See Also

Reference

Font Interface

Font Members

Microsoft.Office.Interop.PowerPoint Namespace