Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 07-19-2012, 10:10 AM
sbianco sbianco is offline Wanted: Printable List of Built-in Word styles Windows XP Wanted: Printable List of Built-in Word styles Office 2007
Novice
Wanted: Printable List of Built-in Word styles
 
Join Date: Mar 2012
Posts: 17
sbianco is on a distinguished road
Default Wanted: Printable List of Built-in Word styles

Where can I find a table containing all the Built-in style names (Body text, caption, header 8, List Number 4, etc), maybe a description brief (normal + tabs: 3" Centered, etc) and most importantly a brief when to use (numbered, subheader, comments, have indents, table cell, etc). Thanks OOPs, for 2010
Reply With Quote
  #2  
Old 07-19-2012, 03:51 PM
macropod's Avatar
macropod macropod is offline Wanted: Printable List of Built-in Word styles Windows 7 64bit Wanted: Printable List of Built-in Word styles Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Try the following macro in an empty document:
Code:
Sub GetBuiltinParaStyleDefs()
Dim oSty As Style, StrSty As String, TbStp As TabStop, SngTab As Single
With ActiveDocument
  For Each oSty In .Styles
    With oSty
      StrSty = ""
      If .BuiltIn = True Then
        If .Type = wdStyleTypeParagraph Then
          With .ParagraphFormat
            StrSty = "Style: " & ActiveDocument.Styles(oSty).NameLocal & vbTab
            StrSty = StrSty & StrSty & "Alignment: " & .Alignment
            StrSty = StrSty & Chr(11) & "Font: " & ActiveDocument.Styles(oSty).Font.Name
            If ActiveDocument.Styles(oSty).Font.Bold = True Then StrSty = StrSty & " (Bold)"
            StrSty = StrSty & vbTab & "Size: " & ActiveDocument.Styles(oSty).Font.Size
            StrSty = StrSty & Chr(11) & "First Line Indent: " & PointsToInches(.FirstLineIndent)
            StrSty = StrSty & Chr(11) & "Right Indent: " & PointsToInches(.RightIndent)
            StrSty = StrSty & Chr(11) & "Left Indent: " & PointsToInches(.LeftIndent)
            StrSty = StrSty & Chr(11) & "Space After: " & PointsToInches(.SpaceAfter)
            StrSty = StrSty & Chr(11) & "Space Before: " & PointsToInches(.SpaceBefore)
            For Each TbStp In .TabStops
              StrSty = StrSty & Chr(11) & "TabStop Alignment: "
              Select Case TbStp.Alignment
                Case 0: StrSty = StrSty & "Left"
                Case 1: StrSty = StrSty & "Center"
                Case 2: StrSty = StrSty & "Right"
                Case 3: StrSty = StrSty & "Decimal"
                Case 4: StrSty = StrSty & "Bar"
                Case 6: StrSty = StrSty & "List"
              End Select
              StrSty = StrSty & " @ " & PointsToInches(TbStp.Position)
            Next
            StrSty = StrSty & vbCr
          End With
        End If
      End If
    End With
    .Range.InsertAfter StrSty
  Next
End With
End Sub
This will output a list of all the paragraph Styles in your document, with their basic attributes.

For installation & usage instructions, see: http://www.gmayor.com/installing_macro.htm
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #3  
Old 07-21-2012, 11:26 AM
sbianco sbianco is offline Wanted: Printable List of Built-in Word styles Windows XP Wanted: Printable List of Built-in Word styles Office 2007
Novice
Wanted: Printable List of Built-in Word styles
 
Join Date: Mar 2012
Posts: 17
sbianco is on a distinguished road
Default

I ran the macro; works perfect, now if you could add a general description of the purpose of each of those styles that would be good. Anyways Thanks and I now I know how to run macros in Office.
Reply With Quote
  #4  
Old 07-21-2012, 12:31 PM
Charles Kenyon Charles Kenyon is offline Wanted: Printable List of Built-in Word styles Windows Vista Wanted: Printable List of Built-in Word styles Office 2010 32bit
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,140
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

Quote:
Originally Posted by sbianco View Post
I ran the macro; works perfect, now if you could add a general description of the purpose of each of those styles that would be good. Anyways Thanks and I now I know how to run macros in Office.
This is an excellent question, but, I'm sorry, I think you are expecting a bit too much, like mind reading, from a vba program. Descriptions of uses of the built-in styles fill many pages. Most are semi-undocumented. Styles are at the heart of Word and understanding them is crucial to using Word well. It is just that I don't think a vba program can do much to shortcut what you'll have to learn.

The purposes of styles are determined by the person who creates it. See Understanding Styles in Microsoft Word
Why use Microsoft Word’s built-in heading styles?
Tips for Understanding Styles in Word
How to create numbered headings or outline numbering in Word 2007 and Word 2010
3. Use styles to format text
5. Use a bulleted paragraph style for bullets and dotpoints
What happens when I send my document to someone else? Will Word mess up my formatting?
How to control the Quick Styles gallery on the Home tab in Word

I would recommend getting a good book and starting with that.
Ø Microsoft Word 2010 Bible by Herb Tyson
Ø Microsoft Word 2010 In Depth by Faithe Wempen
Ø Microsoft Word 2010 Inside Out by Katherine Murray

Ø Microsoft Word 2010: The Missing Manual by Nancy Connor and Matthew McDonald
Reply With Quote
  #5  
Old 07-21-2012, 02:29 PM
macropod's Avatar
macropod macropod is offline Wanted: Printable List of Built-in Word styles Windows 7 64bit Wanted: Printable List of Built-in Word styles Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

There is no such thing as a "general description of the purpose of each of those styles". You can use them for whatever purpose you like. Furthermore, you can change their formatting to almost whatever you like so that you can completely re-purpose most of them.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Wanted: Printable List of Built-in Word styles New Page - When Not Wanted pgrant Word 2 06-07-2012 02:42 PM
Wanted: Printable List of Built-in Word styles Quick Styles Set saved but it doesnt appear at the styles list! Pedro77 Word 3 10-15-2011 05:17 AM
Wanted: Printable List of Built-in Word styles Very frequent heading style, but still not built in Word!!!!! why??? Jamal NUMAN Word 17 06-30-2011 05:47 PM
Wanted: Printable List of Built-in Word styles Multi-level list styles qochi Word 1 05-31-2011 01:16 AM
Wanted: Printable List of Built-in Word styles The list of styles appears in different way in different document????? Jamal NUMAN Word 4 04-28-2011 05:40 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 05:48 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft