Table of Contents

Enum AnimationStyle

Namespace
Northwoods.Go
Assembly
Northwoods.GoDiagram.WinForms.dll

This enumeration specifies possible values for InitialAnimationStyle.

public enum AnimationStyle

Fields

AnimateLocations = 1

Used as the default value for InitialAnimationStyle.

This value will cause initial animations to capture Part locations and animate them from (0, 0) to those location values. See InitialAnimationStyle for details and examples.

Default = 0

Used as the default value for InitialAnimationStyle.

The default initial animation style will "fade up" and in the Diagram's contents by animating the Position and Opacity. To customize the default initial animation, set InitialAnimationStyle to None and define a InitialAnimationStarting handler. See InitialAnimationStyle for details and examples.

None = 2

Used as the default value for InitialAnimationStyle.

This will turn off the initial animation, but also allows for customizing the initial animation by adding your own properties if you define a InitialAnimationStarting handler. See InitialAnimationStyle for details and examples.