ComponentFactory.Krypton.Toolkit.KryptonCheckButton.OnCheckedChanging C# (CSharp) Method

OnCheckedChanging() protected method

Raises the CheckedChanging event.
protected OnCheckedChanging ( CancelEventArgs e ) : void
e CancelEventArgs A CancelEventArgs containing the event data.
return void
        protected virtual void OnCheckedChanging(CancelEventArgs e)
        {
            if (CheckedChanging != null)
                CheckedChanging(this, e);
        }