Options.OptimizeForWord97byDefault Property

Word Developer Reference

True if Microsoft Word optimizes all new documents for viewing in Word 97 by disabling any incompatible formatting. Read/write Boolean.

Syntax

expression.OptimizeForWord97byDefault

expression   A variable that represents a Options object.

Remarks

To optimize a single document for Word 97, use the OptimizeForWord97 property.

Example

This example sets Word to disable all formatting in new documents that’s incompatible with Word 97, and then it creates a new document whose OptimizeForWord97 property is automatically set to True.

Visual Basic for Applications
  Options.OptimizeForWord97byDefault = True
MsgBox Documents.Add(DocumentType:=wdNewBlankDocument) _
    .OptimizeForWord97

See Also