View.ShowAnimation Property

Word Developer Reference

True if text animation is displayed. Read/write Boolean.

Syntax

expression.ShowAnimation

expression   An expression that returns a View object.

Example

This example turns on text animation in the active window and then applies sparkle-text animation to the selection.

Visual Basic for Applications
  ActiveDocument.ActiveWindow.View.ShowAnimation = True
Selection.Font.Animation = wdAnimationSparkleText

This example turns off font animation in all open windows.

Visual Basic for Applications
  For Each aWindow In Windows
    aWindow.View.ShowAnimation = False
Next aWindow

See Also