ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupComboBox.OnDropDown C# (CSharp) Method

OnDropDown() protected method

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