Share via


DropCap.FontColor Property

Publisher Developer Reference

Returns or sets a ColorFormat object that represents the color applied to a specified dropped capital letter.

Syntax

expression.FontColor

expression   A variable that represents a DropCap object.

Return Value
ColorFormat

Example

This example applies an RGB color to the dropped capital letter in the specified text frame. This example assumes that the specified text frame is formatted with a dropped capital letter.

Visual Basic for Applications
  Sub BoldDropCap()
    With ActiveDocument.Pages(1).Shapes(1) _
            .TextFrame.TextRange.DropCap
        .FontBold = msoTrue
        .FontColor.RGB = RGB(Red:=150, Green:=50, Blue:=180)
        .FontItalic = msoTrue
        .FontName = "Script MT Bold"
    End With
End Sub

See Also