StyleSheets Collection

Microsoft Word Visual Basic

StyleSheets Collection

Document StyleSheets
StyleSheet

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, accessed using the Templates and Add-ins command (Tools menu).

Using the StyleSheets collection

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