Document.XMLSaveThroughXSLT Property

Word Developer Reference

Sets or returns a String that specifies the path and file name for the Extensible Stylesheet Language Transformation (XSLT) to apply when a user saves a document.

Syntax

expression.XMLSaveThroughXSLT

expression   An expression that returns a Document object.

Remarks

The XMLSaveThroughXSLT property is only applicable when the XMLUseXSLTWhenSaving property is set to True. If the XMLUseXSLTWhenSaving property is set to False, Microsoft Word will ignore the XMLSaveThroughXSLT property.

Example

The following example specifies that Word will use an XSLT when saving the active document, and then it specifies which XSLT to use.

Visual Basic for Applications
  ActiveDocument.XMLUseXSLTWhenSaving = True
ActiveDocument.XMLSaveThroughXSLT = "c:\schemas\book.xsl"

See Also