TextEffectFormat.FontName property (Word)

Returns or sets the name of the font for the dropped capital letter. Read/write String.

Syntax

expression. FontName

expression A variable that represents a 'TextEffectFormat' object.

Example

This example sets Arial as the font for the dropped capital letter for the first paragraph in the active document.

With ActiveDocument.Paragraphs(1).DropCap 
 .FontName = "Arial" 
 .Position = wdDropNormal 
 .LinesToDrop = 3 
 .DistanceFromText = InchesToPoints(0.1) 
End With

See also

TextEffectFormat 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.