ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.OnItemCheck C# (CSharp) Метод

OnItemCheck() защищенный Метод

Raises the ItemCheck event.
protected OnItemCheck ( System.Windows.Forms.ItemCheckEventArgs e ) : void
e System.Windows.Forms.ItemCheckEventArgs An ItemCheckEventArgs containing the event data.
Результат void
        protected virtual void OnItemCheck(ItemCheckEventArgs e)
        {
            if (ItemCheck != null)
                ItemCheck(this, e);
        }
KryptonCheckedListBox