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

OnSelectionChanged() protected method

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