LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
RasterImageAnimatorState Enumeration
See Also  
Leadtools Namespace : RasterImageAnimatorState Enumeration



The RasterImageAnimator state.

Syntax

Visual Basic (Declaration) 
Public Enum RasterImageAnimatorState 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As RasterImageAnimatorState
C# 
public enum RasterImageAnimatorState : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
public enum class RasterImageAnimatorState : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
EndIndicates that the animation is past the last frame in the list (index = number of frames or pages). The animator will loop to index = 0 on the next call with the state set to PreRender
PostClearIndicates that the target image has been cleared
PostDisposeIndicates that the current frame has been disposed of. The index is incremented after processing this state
PostRenderIndicates that a frame is in the midst of being rendered to the target image
PreClearThe initial state of the animation (index = -1). The target image will be cleared to the RasterImage.AnimationBackground color of the current frame on the next call
PreDisposeIndicates that the current frame will be disposed of on the next call
PreRenderIndicates that the current frame will be rendered to the target image on the next call
RenderIndicates that a frame has been rendered to the target image
WaitDelayIndicates that the animation engine is waiting for a delayed time before moving on to PreDispose
WaitInputIndicates that the animation engine is waiting for user input before moving on to PreDispose
WaitInputDelayIndicates that the animation engine is waiting for user input and a delayed time before moving on to PreDispose

Example

For an example, refer to RasterImageAnimator.

Remarks

This enumeration is used as the state of the RasterImageAnimator. It is used as the value of the RasterImageAnimator.State property and the return value of the RasterImageAnimator.Process method.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.RasterImageAnimatorState

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7

See Also