ATMLCommonLibrary.controls.instrument.InstrumentListControl.OnAtmlObjectAction C# (CSharp) Метод

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

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