LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
AnimationWaitUserInput Property
See Also 
Leadtools Namespace > RasterImage Class : AnimationWaitUserInput Property



Gets or sets a value indicating whether the RasterImageAnimator object should wait for user input in the current frame. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Public Property AnimationWaitUserInput As Boolean
Visual Basic (Usage)Copy Code
Dim instance As RasterImage
Dim value As Boolean
 
instance.AnimationWaitUserInput = value
 
value = instance.AnimationWaitUserInput
C# 
public bool AnimationWaitUserInput {get; set;}
C++/CLI 
public:
property bool AnimationWaitUserInput {
   bool get();
   void set (    bool value);
}

Property Value

true if the RasterImageAnimator object should wait for user input in the current frame, otherwise; false.

Example

There is currently no example for this property.

Remarks

The "Wait for user input" is supported by GIF89a and later standard. This flag gets set to the corresponding value if this image was loaded from a GIF file. Also, the value set in this property will be used if this image is saved as a GIF file. Otherwise, the LEADTOOLS toolkit will not use the value of this property.

When the value of this property is changed, the RasterImage.Changed event will fire with RasterImageChangedFlags set to RasterImageChangedFlags.AnimationProperties.

For more information, refer to Implementing Animation.

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