XAF_Bootstrap.Controls.XafBootstrapButton.RaiseExecutionEvent C# (CSharp) Метод

RaiseExecutionEvent() публичный Метод

public RaiseExecutionEvent ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        public void RaiseExecutionEvent(object sender, EventArgs e)
        {
            if (OnExecution != null)
                OnExecution(sender, e);
        }