Share via


Font.Emboss Property

PowerPoint Developer Reference

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.

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

See Also