Skip to content

Latest commit

 

History

History
65 lines (40 loc) · 1.5 KB

Word.Document.Styles.md

File metadata and controls

65 lines (40 loc) · 1.5 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.Styles property (Word)
vbawd10.chm158007318
vbawd10.chm158007318
Word.Document.Styles
30784574-92d1-a2fa-1032-6e1f8bb79ccf
06/08/2017
medium

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

[!includeSupport and feedback]