TextStyle.Description property (Publisher)

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.

Syntax

expression.Description

expression A variable that represents a TextStyle object.

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

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.