DropCap Property

Applies To

Paragraph object.

Description

Returns a DropCap object that represents a dropped capital letter for the specified paragraph. Read-only.

See Also

AllCaps property, Enable method, Position property, SmallCaps property.

Example

This example sets a 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