ComponentFactory.Krypton.Ribbon.ViewHightlightController.OnClick C# (CSharp) Method

OnClick() protected method

Raises the Click event.
protected OnClick ( EventArgs e ) : void
e System.EventArgs An EventArgs containing the event data.
return void
        protected virtual void OnClick(EventArgs e)
        {
            if (Click != null)
                Click(this, e);
        }