Font.Emboss property (PowerPoint)

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

Syntax

expression. Emboss

expression A variable that represents an Font object.

Return value

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.

Example

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

Application.ActivePresentation.Slides(1).Shapes.Title _
    .TextFrame.TextRange.Font.Emboss = msoTrue

See also

Font Object

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.