Description Property

       

Returns a String that represents the description of the specified style. For example, a typical description for the Normal style might be "(Default) Times New Roman, (Asian) MS Mincho, 10 pt, Main (Black), Kerning 14 pt, Left, Line spacing 1 sp." Read-only.

expression.Description

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

This example displays the description for the Normal style.

Sub ShowStyleDescription()
    MsgBox "The Normal style has the following formatting attributes: " & _
        vbLf & ActiveDocument.TextStyles("Normal").Description
End Sub