Help and Support

Article ID: 140742 - Last Review: August 17, 2005 - Revision: 1.1

Sample Macro to Print All Styles and Their Definitions

This article was previously published under Q140742
Expand all | Collapse all

SUMMARY

This article provides a sample macro to list and print all styles and their definitions.

MORE INFORMATION

WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this macro code "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

The following macro prints all styles and their definitions:
Sub MAIN

ScreenUpdating 0                          ' turn off screen noise
a = CountStyles()                         ' get # of styles, assign to

                                          ' variable

For x = 1 To a                            ' begin loop
 sn$ = StyleName$(x)
 FormatFont .Bold = 1                     ' format style name as bold
 FormatParagraph .KeepWithNext = 1        ' and keep it with style

                                          ' definition text

 Insert StyleName$(x) + Chr$(13)          ' insert style name
 FormatParagraph .KeepWithNext = 0        ' turn off Keep with Next
 FormatFont .Bold = 0                     ' turn off bold formatting
 Insert StyleDesc$(sn$) + String$(2, 13)  ' insert style definition
Next                                      ' go back for the next one
StartOfDocument                           ' go to top of document

End Sub
				
For additional information regarding the CountStyles() function, click Microsoft Word Help Topics on the Help menu, and see the "CountStyles() function" topic.

APPLIES TO
  • Microsoft Word 95 Standard Edition
Keywords: 
KB140742
Retired KB ArticleRetired KB Content Disclaimer
This article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.

Article Translations