Document.StyleSheets property (Word)

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.

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

See also

Document Object

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.