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

OnAfterExpand() protected method

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