DropCap.Enable Method (Word)
Formats the first character in the specified paragraph as a dropped capital letter.
Syntax
expression .Enable
expression Required. A variable that represents a DropCap object.
Example
This example formats the first paragraph in the selection to begin with a dropped capital letter.
With Selection.Paragraphs(1).DropCap
.Enable
.LinesToDrop = 2
.FontName = "Arial"
End With