Engrave Property

Applies To

Font object.

Description

True if the font is formatted as engraved. Returns True, False or wdUndefined (a mixture of True and False). Can be set to True, False, or wdToggle. Read/write Long.

Remarks

Setting Engrave to True sets Emboss to False, and vice versa.

See Also

Emboss property, Font property, FormattedText property.

Example

This example formats the first letter in the active document as engraved.

Set myRange = ActiveDocument.Characters(1)
With myRange.Font
    .Size = 20
    .Engrave = True
End With
This example formats the selection as engraved.

If Selection.Type = wdSelectionNormal Then
    Selection.Font.Engrave = True
Else
    MsgBox "You need to select some text."
End If