Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
RasterImageAnimatorState Enumeration
See Also  
Leadtools Namespace : RasterImageAnimatorState Enumeration



The RasterImageAnimator state.

Syntax

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

Members

MemberDescription
PreClear The 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
PostClear Indicates that the target image has been cleared
PreRender Indicates that the current frame will be rendered to the target image on the next call
Render Indicates that a frame has been rendered to the target image
PostRender Indicates that a frame is in the midst of being rendered to the target image
WaitInput Indicates that the animation engine is waiting for user input before moving on to PreDispose
WaitDelay Indicates that the animation engine is waiting for a delayed time before moving on to PreDispose
WaitInputDelay Indicates that the animation engine is waiting for user input and a delayed time before moving on to PreDispose
PreDispose Indicates that the current frame will be disposed of on the next call
PostDispose Indicates that the current frame has been disposed of. The index is incremented after processing this state
End Indicates 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

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: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also