ComponentFactory.Krypton.Toolkit.KryptonListBox.OnFormatInfoChanged C# (CSharp) Method

OnFormatInfoChanged() protected method

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