evCreate API 5.7 Help

EvAnimationPosition Interface

The EvAnimationPosition TS interface defines a blueprint of a JS object that specifies a position on the animation timeline.

Properties

An EvAnimationPosition object has the following properties:

position: number;

A number, a given position on the animation timeline. The actual value depends on the positioning method given in the positionType property.

positionType: EvAnimationPositionType;

A member of the EvAnimationPositionType enumeration, a method to specify the given position on the animation timeline.

Examples

TS

{ position: 12, type: EvAnimationPositionType.Time }

JS

{ position: 12, type: "time" }
26 April 2025