Paint.PictureStateManager.OnUndoEnabledChanged C# (CSharp) Method

OnUndoEnabledChanged() protected method

Raises the undo ebabled changed event.
protected OnUndoEnabledChanged ( EventArgs e ) : void
e System.EventArgs /// General EventArgs ///
return void
        protected virtual void OnUndoEnabledChanged(EventArgs e)
        {
            if (this.UndoEnabledChanged != null)
            {
                this.UndoEnabledChanged(this, EventArgs.Empty);
            }
        }