How can I iterate through table styles only?
- by Vitali Climenco
I have a procedure that iterates through the styles available to a document:
Sub EnumerateStyles()
For Each Style in ActiveDocument.Styles
`some custom code
Next
End Sub
I do not need all the styles, and just those that are applicable to tables only. How can I programmatically filter the styles?
Thank you