DropCap.Position Property (Word)
Returns or sets the position of a dropped capital letter. Read/write WdDropPosition.
Syntax
expression .Position
expression Required. A variable that represents a DropCap object.
Example
This example sets the first paragraph in the active document to begin with a dropped capital letter. The position of the DropCap object is set to wdDropNormal.
With ActiveDocument.Paragraphs(1).DropCap
.Enable
.FontName= "Arial"
.Position = wdDropNormal
End With