System.Windows.Forms.ToolStripButton.OnCheckStateChanged C# (CSharp) Method

OnCheckStateChanged() protected method

protected OnCheckStateChanged ( EventArgs e ) : void
e EventArgs
return void
		protected virtual void OnCheckStateChanged (EventArgs e)
		{
			EventHandler eh = (EventHandler)(Events [CheckStateChangedEvent]);
			if (eh != null)
				eh (this, e);
		}