Share via


StyleSheet.FullName Property

Word Developer Reference

Specifies the name of a cascading style sheet, including the drive or Web path. Read-only String.

Syntax

expression.FullName

expression   Required. A variable that represents a StyleSheet object.

Remarks

Using this property is equivalent to using the Path, PathSeparator, and Name properties in sequence.

Example

This example displays the path and file name of the style sheet attached to the active document.

Visual Basic for Applications
  Sub CSSName()
    MsgBox ActiveDocument.StyleSheets(1).FullName
End Sub

See Also