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

SetVisibleCore() protected method

protected SetVisibleCore ( bool visible ) : void
visible bool
return void
		protected virtual void SetVisibleCore (bool visible)
		{
			this.visible = visible;
			this.OnVisibleChanged (EventArgs.Empty);
			
			if (this.visible)
				BeginAnimation ();
			else
				StopAnimation ();
			this.Invalidate ();
		}
		#endregion