A family of Microsoft word processing software products for creating web, email, and print documents.
The button will not be active unless you have text selected. You can select up to a full word. (I'm sure there is a limit on length, but I've never found it.)
It inserts a Frame with the content that was selected.
You can choose options for the placement, size, and font in the DropCap options.
The default for your font will be the default body+ font. The default size is 3 lines.
You can select one and use the options to modify it.
All of the ones shown in the screenshot are 2 lines except the fourth which is 3 lines. The first one is using the default font. The first, third, fourth, and fifth are Dropped. The second one is in the margin. The second and third are using the Castellar font; the fourth is using the Baguet Script font. The third-fifth ones show what happens if you select more characters. The fourth one has extra text effects from the Home tab. They can all be modified using the DropCap options.
You can select one and save it as an AutoText to preserve the settings and then simply change the text when you next insert it.
Here is a macro that I picked up last year to set it for 2 lines and Castellar font.
Sub DropCapMy()
' Don Buelke 2025-01-21
' https://answers.microsoft.com/en-us/msoffice/forum/all/dropcaps-spontaneously-changes-from-2-to-3-lines/e570547c-0d1b-4406-8699-80932757689b
'
With Selection.Paragraphs(1).DropCap
.Position = wdDropNormal
.FontName = "Castellar"
.LinesToDrop = 2
.DistanceFromText = 0 ' in points
End With
End Sub
Here are Graham Mayor's tips on using macros from a forum: https://www.gmayor.com/installing_macro.htm
If you use such a macro, you can attach it to a keyboard shortcut or a QAT button for quick use.
- Modifying the QAT https://addbalance.com/word/QATmodification.htm#PageStart
- Keyboard Shortcuts: https://addbalance.com/articles/Assigning%20Keyboard%20Shortcuts%20in%20Microsoft%20Word%202007-2024%20(365).htm
Because the DropCap is in a Frame, and most Word users never learn about Frames, here is a link to my page on TextBoxes and Frames in Word. https://addbalance.com/word/frames_textboxes.htm#StartPage Because it is a Frame, you can select and move it around and apply borders and shading to it.