Sets or returns a Font.TextAnimation object that represents the text animation for a character run.

public TextAnimation Animation{ get; set; }
Public Property Animation() As TextAnimation

MS Word equivalent: Format menu > Font... > Text Effects tab > Animations:

          //--- Return TextAnimation
          Font.TextAnimation oTextAnimation = oFont.Animation;

          //--- Set TextAnimation to LasVegasLights
          oFont.Animation = Font.TextAnimation.LasVegasLights;
        
          '--- Return TextAnimation
          Dim oTextAnimation As Font.TextAnimation = oFont.Animation

          '--- Set TextAnimation to LasVegasLights
          oFont.Animation = Font.TextAnimation.LasVegasLights