Show / Hide Table of Contents

Interface ITransition

Represents an entity able to perform animation transitions

Namespace: GraphShape.Controls
Assembly: GraphShape.Controls.dll
Syntax
public interface ITransition

Methods

| Improve this Doc View Source

Run(IAnimationContext, Control, TimeSpan, Action<Control>)

Runs the transition.

Declaration
void Run(IAnimationContext context, Control control, TimeSpan duration, Action<Control> endAction)
Parameters
Type Name Description
IAnimationContext context

The context of the transition.

Control control

The control which the transition should be run on.

TimeSpan duration

The duration of the transition.

Action<Control> endAction

The method that should be called when the transition finished.

Extension Methods

GraphHelpers.GetDistances<TVertex, TEdge, TGraph>(TGraph)
GraphHelpers.GetDiameter<TVertex, TEdge, TGraph>(TGraph)
GraphHelpers.GetDiameter<TVertex, TEdge, TGraph>(TGraph, out Double[,])
TransitionExtensions.Run(ITransition, IAnimationContext, Control, TimeSpan)
  • Improve this Doc
  • View Source
In This Article
Back to top GraphShape