Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
True if Microsoft Word optimizes the current document for viewing in Microsoft Word 97 by disabling any incompatible formatting. Read/write Boolean.
Syntax
expression. OptimizeForWord97
expression A variable that represents a Document object.
Remarks
To optimize all new documents for Word 97 by default, use the OptimizeForWord97byDefault property.
Example
This example checks the current document to see if it is optimized for Word 97; if it is not, the example asks the user whether it should be.
If ActiveDocument.OptimizeForWord97 = False Then
x = MsgBox("Is this document targeted at " _
& "Word 97 users?", vbYesNo)
If x = vbYes Then _
ActiveDocument.OptimizeForWord97 = True
End If
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.