ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupDateTimePicker.OnKeyPress C# (CSharp) Method

OnKeyPress() protected method

Raises the KeyPress event.
protected OnKeyPress ( KeyPressEventArgs e ) : void
e KeyPressEventArgs An KeyPressEventArgs containing the event data.
return void
        protected virtual void OnKeyPress(KeyPressEventArgs e)
        {
            if (KeyPress != null)
                KeyPress(this, e);
        }