LinesToDrop Property
Applies To
DropCap object.
Description
Returns or sets the height of the specified dropped capital letter, in lines. Read/write Long.
See Also
Height property, Position property.
Example
This example formats the first character in the active document as a dropped capital letter with a height of three lines.
With ActiveDocument.Paragraphs(1).DropCap
.Enable
.Position = wdDropNormal
.LinesToDrop = 3
End With