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;
        }