Error processing SSI file
LEADTOOLS Windows Forms (Leadtools.WinForms assembly)

Show in webframe

StopAnimation Method






Stops an animation playback.
Syntax
public void StopAnimation()
'Declaration
 
Public Sub StopAnimation() 
'Usage
 
Dim instance As RasterPictureBox
 
instance.StopAnimation()

            

            
public:
void StopAnimation(); 
Example

This example will stop an animated GIF file.

Copy Code  
Imports Leadtools.WinForms
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Drawing

Public Sub RasterPictureBox_StopAnimation(ByVal viewer As RasterPictureBox)
   viewer.StopAnimation()
End Sub
using Leadtools.WinForms;
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Drawing;

public void RasterPictureBox_StopAnimation(RasterPictureBox viewer)
{
   viewer.StopAnimation();  // suspend painting of the image 
}
Requirements

Target Platforms

See Also

Reference

RasterPictureBox Class
RasterPictureBox Members

Error processing SSI file