Document.XMLUseXSLTWhenSaving Property

Word Developer Reference

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.

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

See Also