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

OnCheckStateChanged() protected method

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