Compartilhar via


DropCap.LinesToDrop Property

Word Developer Reference

Returns or sets the height (in lines) of the specified dropped capital letter. Read/write Long.

Syntax

expression.LinesToDrop

expression   An expression that returns a DropCap object.

Example

This example formats the first character in the active document as a dropped capital letter with a height of three lines.

Visual Basic for Applications
  With ActiveDocument.Paragraphs(1).DropCap
    .Enable
    .Position = wdDropNormal
    .LinesToDrop = 3
End With

See Also