ATMLCommonLibrary.forms.ATMLLibraryForm.OnAtmlObjectAction C# (CSharp) Метод

OnAtmlObjectAction() защищенный Метод

protected OnAtmlObjectAction ( IAtmlObject obj, AtmlActionType actiontype, EventArgs args ) : IAtmlObject
obj IAtmlObject
actiontype AtmlActionType
args System.EventArgs
Результат IAtmlObject
        protected virtual IAtmlObject OnAtmlObjectAction(IAtmlObject obj, AtmlActionType actiontype, EventArgs args)
        {
            IAtmlObject results = null;
            AtmlActionDeligate<IAtmlObject> handler = AtmlObjectAction;
            if (handler != null)
            {
                results = handler( obj, actiontype, args );
            }
            return results;
        }