ATML1671Reader.forms.TestConfigurationForm.OnAtmlObjectAction C# (CSharp) Method

OnAtmlObjectAction() protected method

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