ComponentFactory.Krypton.Toolkit.KryptonTreeView.OnAfterCheck C# (CSharp) Method

OnAfterCheck() protected method

Raises the AfterCheck event.
protected OnAfterCheck ( TreeViewEventArgs e ) : void
e System.Windows.Forms.TreeViewEventArgs An TreeViewEventArgs that contains the event data.
return void
        protected virtual void OnAfterCheck(TreeViewEventArgs e)
        {
            if (AfterCheck != null)
                AfterCheck(this, e);
        }
KryptonTreeView