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

OnModifiedChanged() protected method

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