Skip to content

Latest commit

 

History

History
63 lines (38 loc) · 1.2 KB

Word.Font.Emboss.md

File metadata and controls

63 lines (38 loc) · 1.2 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Font.Emboss property (Word)
vbawd10.chm156369044
vbawd10.chm156369044
Word.Font.Emboss
ae0cc2d0-b1ae-3208-7f61-cad731f04e29
06/08/2017
medium

Font.Emboss property (Word)

True if the specified font is formatted as embossed. Read/write Long.

Syntax

expression. Emboss

expression A variable that represents a Font object.

Remarks

Returns True, False, or wdUndefined. Can be set to True, False, or wdToggle. Setting Emboss to True sets Engrave to False, and vice versa.

Example

This example embosses the second sentence in a new document.

With Documents.Add.Content 
 .InsertAfter "This is the first sentence. " 
 .InsertAfter "This is the second sentence. " 
 .Sentences(2).Font.Emboss = True 
End With

This example embosses the selected text.

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

See also

Font Object

[!includeSupport and feedback]