FairyGUI.EventDispatcher.BubbleEvent C# (CSharp) Method

BubbleEvent() public method

public BubbleEvent ( string strType, object data ) : bool
strType string
data object
return bool
        public bool BubbleEvent(string strType, object data)
        {
            return BubbleEvent(strType, data, null);
        }

Same methods

EventDispatcher::BubbleEvent ( string strType, object data, List addChain ) : bool

Usage Example

示例#1
0
 static int BubbleEvent(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 3);
         FairyGUI.EventDispatcher obj = (FairyGUI.EventDispatcher)ToLua.CheckObject <FairyGUI.EventDispatcher>(L, 1);
         string arg0 = ToLua.CheckString(L, 2);
         object arg1 = ToLua.ToVarObject(L, 3);
         bool   o    = obj.BubbleEvent(arg0, arg1);
         LuaDLL.lua_pushboolean(L, o);
         return(1);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
All Usage Examples Of FairyGUI.EventDispatcher::BubbleEvent