StyleSheets Collection

Word Developer Reference

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.

Visual Basic for Applications
  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