Error processing SSI file
(Leadtools.Controls)

Show in webframe

StopAnimation Method




Stops an animation playback.
Syntax
public void StopAnimation()
'Declaration
 
Public Sub StopAnimation() 
Example

This example will stop an animated GIF file.

Copy Code  
Imports Leadtools
Imports Leadtools.Controls
Imports Leadtools.Codecs
Imports Leadtools.Drawing

Public Sub RasterPictureBox_StopAnimation(ByVal viewer As RasterPictureBox)
   viewer.StopAnimation() ' suspend painting of the image
End Sub
using Leadtools;
using Leadtools.Controls;
using Leadtools.Codecs;
using Leadtools.Drawing;

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

Target Platforms

See Also

Reference

RasterPictureBox Class
RasterPictureBox Members

Error processing SSI file