ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.OnPaddingChanged C# (CSharp) Method

OnPaddingChanged() protected method

Raises the PaddingChanged event.
protected OnPaddingChanged ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
return void
        protected override void OnPaddingChanged(EventArgs e)
        {
            if (PaddingChanged != null)
                PaddingChanged(this, e);
        }
KryptonCheckedListBox