ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.OnItemCheck C# (CSharp) Method

OnItemCheck() protected method

Raises the ItemCheck event.
protected OnItemCheck ( System.Windows.Forms.ItemCheckEventArgs e ) : void
e System.Windows.Forms.ItemCheckEventArgs An ItemCheckEventArgs containing the event data.
return void
        protected virtual void OnItemCheck(ItemCheckEventArgs e)
        {
            if (ItemCheck != null)
                ItemCheck(this, e);
        }
KryptonCheckedListBox