XMLUseXSLTWhenSaving Property

Microsoft Word Visual Basic

XMLUseXSLTWhenSaving Property

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

expression.XMLUseXSLTWhenSaving

expression    Required. 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"