Share via


TextStyles Property.TextStyles Property

Publisher Developer ReferencePublisher Developer Reference

Returns a TextStyles collection that contains a publication's text styles.

Syntax

expression.TextStyles

expression   A variable that represents a TextStyles Property object.

Return Value
TextStyles

Example

The following example displays the style name and base style of the first style in the TextStyles collection.

Visual Basic for Applications
  Sub BaseStyleName()
    With ActiveDocument.TextStyles(1)
        MsgBox "Style name= " & .Name _
            & vbCr & "Base style= " & .BaseStyle
    End With
End Sub

See Also