ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupRichTextBox.OnProtected C# (CSharp) Method

OnProtected() protected method

Raises the Protected event.
protected OnProtected ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
return void
        protected virtual void OnProtected(EventArgs e)
        {
            if (Protected != null)
                Protected(this, e);
        }