Enable Method

Microsoft Word Visual Basic

Enable Method

       

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

expression.Enable

expression   Required. An expression that returns a DropCap object.

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