Enable Method

Applies To

DropCap object.

Description

Formats the first character in the specified paragraph as a dropped capital letter.

Syntax

expression.Enable

expression Required. An expression that returns a DropCap object.

See Also

DropCap property.

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