LinesToDrop Property
Returns or sets the height (in lines) of the specified dropped capital letter. Read/write Long.
expression.LinesToDrop
expression Required. An expression that returns a DropCap object.
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
Applies to | DropCap Object
See Also | Height Property | Position Property