Document.Styles property (Word)

Returns a Styles collection for the specified document. Read-only.

Syntax

expression.Styles

expression A variable that represents a Document object.

Remarks

For information about returning a single member of a collection, see Returning an object from a collection.

Example

This example applies the Heading 1 style to each paragraph in the active document that begins with the word "Chapter."

For Each para In ActiveDocument.Paragraphs 
 If para.Range.Words(1).Text = "Chapter " Then 
 para.Style = ActiveDocument.Styles(wdStyleHeading1) 
 End If 
Next para

This example opens the template attached to the active document and modifies the Heading 1 style. The template is saved, and all styles in the active document are updated.

Set tempDoc = ActiveDocument.AttachedTemplate.OpenAsDocument 
With tempDoc.Styles(wdStyleHeading1).Font 
 .Name = "Arial" 
 .Size = 16 
End With 
tempDoc.Close SaveChanges:=wdSaveChanges 
ActiveDocument.UpdateStyles

See also

Document Object

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.