Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns a Font.TextAnimation object that represents the text animation for a character run.
C#
public TextAnimation Animation{ get; set; }
vb.net
Public Property Animation() As TextAnimation

Remarks

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

Examples

C#
//--- Return TextAnimation
Font.TextAnimation oTextAnimation = oFont.Animation;
 
//--- Set TextAnimation to LasVegasLights
oFont.Animation = Font.TextAnimation.LasVegasLights;
vb.net
'--- Return TextAnimation
Dim oTextAnimation As Font.TextAnimation = oFont.Animation
 
'--- Set TextAnimation to LasVegasLights
oFont.Animation = Font.TextAnimation.LasVegasLights
  • No labels