StyleSheets Property

Word Developer Reference

Returns a StyleSheets collection that represents the Web style sheets attached to a document.

Syntax

expression.StyleSheets

expression   An variable that represents a Document object.

Example

This example adds a style sheet to the active document and places it highest in the list of style sheets attached to the document. This example assumes that you have a style sheet document named "Website.css" located on your drive C.

Visual Basic for Applications
  Sub Styshts()
    ActiveDocument.StyleSheets.Add _
        FileName:="c:\Website.css", _
        Precedence:=wdStyleSheetPrecedenceHighest
End Sub

See Also