Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Controls Assembly > Leadtools.Controls Namespace > RasterPictureBox Class : StopAnimation Method |
public void StopAnimation()
'Declaration
Public Sub StopAnimation()
This example will stop an animated GIF file.
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 }