ATMLCommonLibrary.controls.equipment.TestAdapterListControl.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 )
        {
            IAtmlObject results = null;
            AtmlActionDeligate<IAtmlObject> handler = AtmlObjectAction;
            if (handler != null) results = handler( obj, actiontype, EventArgs.Empty );
            return results;
        }