StyleSheets object (Word)

A collection of StyleSheet objects that represents the cascading style sheets attached to a document. The StyleSheets collection includes all cascading style sheets displayed in the Linked CSS Style Sheets dialog box.

Remarks

Use the StyleSheets property to return the StyleSheets collection. Use the Add method to add a style sheet to the StyleSheets collection. The following example adds three cascading style sheets to the active document and sets the third as the highest in precedence.

Sub AddCSS() 
 With ActiveDocument.StyleSheets 
 .Add FileName:="Web.css", Title:="Web Styles" 
 .Add FileName:="New.css", Linktype:=wdStyleSheetLinkTypeImported, _ 
 Title:="New Styles" 
 .Add FileName:="Defs.css", Title:="Definitions", _ 
 Precedence:=wdStyleSheetPrecedenceHighest 
 End With 
End Sub

See also

Word Object Model Reference

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.