System.Windows.Forms.ListView.OnItemCheck C# (CSharp) Method

OnItemCheck() protected method

protected OnItemCheck ( ItemCheckEventArgs ice ) : void
ice ItemCheckEventArgs
return void
		protected internal virtual void OnItemCheck (ItemCheckEventArgs ice)
		{
			ItemCheckEventHandler eh = (ItemCheckEventHandler)(Events [ItemCheckEvent]);
			if (eh != null)
				eh (this, ice);
		}
ListView