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

OnNodeMouseClick() protected method

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