ATMLCommonLibrary.forms.InstrumentForm.OnAtmlObjectAction C# (CSharp) Method

OnAtmlObjectAction() protected method

protected OnAtmlObjectAction ( IAtmlObject obj, AtmlActionType actiontype ) : IAtmlObject
obj IAtmlObject
actiontype AtmlActionType
return IAtmlObject
        protected virtual IAtmlObject OnAtmlObjectAction( IAtmlObject obj, AtmlActionType actiontype )
        {
            AtmlActionDeligate<IAtmlObject> handler = AtmlObjectAction;
            if (handler != null) obj = handler( obj, actiontype, EventArgs.Empty );
            return obj;
        }