Search
FillColorAnimation Class
Remarks See Also
 





Animates the fill color of nodes or link arrowheads.

Namespace: MindFusion.Diagramming.Animations
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public class FillColorAnimation : ItemAnimation

Visual Basic  Copy Code

Public Class FillColorAnimation
    Inherits ItemAnimation

 Remarks

Call item's Animate method to run an animation.

 Example

C#  Copy Code
node.Animate(
    new FillColorAnimation(
        new AnimationOptions
        {
            FromValue = Color.White,
            ToValue = Color.LightSkyBlue,
            Duration = 250,
            KeepLastValue = true
        }));

 Inheritance Hierarchy

System.Object
    MindFusion.Animations.Animation
        MindFusion.Diagramming.Animations.ItemAnimation
            MindFusion.Diagramming.Animations.FillColorAnimation

 See Also