System.Windows.Forms.ToolStripItem.BeginAnimation C# (CSharp) Method

BeginAnimation() private method

private BeginAnimation ( ) : void
return void
		private void BeginAnimation ()
		{
			if (image != null && ImageAnimator.CanAnimate (image)) {
				frame_handler = new EventHandler (OnAnimateImage);
				ImageAnimator.Animate (image, frame_handler);
			}
		}