Document.TextStyles property (Publisher)
Returns a TextStyles collection that contains a publication's text styles.
Syntax
expression.TextStyles
expression A variable that represents a Document object.
Return value
TextStyles
Example
The following example displays the style name and base style of the first style in the TextStyles collection.
Sub BaseStyleName()
With ActiveDocument.TextStyles(1)
MsgBox "Style name= " & .Name _
& vbCr & "Base style= " & .BaseStyle
End With
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.