Document.XMLUseXSLTWhenSaving Property (Word)

Returns a Boolean that represents whether to save a document through an Extensible Stylesheet Language Transformation (XSLT). True saves a document through an XSLT.

Syntax

expression .XMLUseXSLTWhenSaving

expression An expression that returns a Document object.

Remarks

When setting the XMLUseXSLTWhenSaving property to True, use the XMLSaveThroughXSLT property to specify the path and file name of the XSLT to use.

Example

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

ActiveDocument.XMLUseXSLTWhenSaving = True 
ActiveDocument.XMLSaveThroughXSLT = "c:\schemas\book.xslt"

See Also

Concepts

Document Object Members

Document Object