FairyGUI.Window.CloseModalWait C# (CSharp) Method

CloseModalWait() public method

public CloseModalWait ( ) : bool
return bool
        public bool CloseModalWait()
        {
            return CloseModalWait(0);
        }

Same methods

Window::CloseModalWait ( int requestingCmd ) : bool

Usage Example

示例#1
0
    static int CloseModalWait(IntPtr L)
    {
        try
        {
            int count = LuaDLL.lua_gettop(L);

            if (count == 1 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.Window)))
            {
                FairyGUI.Window obj = (FairyGUI.Window)ToLua.ToObject(L, 1);
                bool            o   = obj.CloseModalWait();
                LuaDLL.lua_pushboolean(L, o);
                return(1);
            }
            else if (count == 2 && TypeChecker.CheckTypes(L, 1, typeof(FairyGUI.Window), typeof(int)))
            {
                FairyGUI.Window obj  = (FairyGUI.Window)ToLua.ToObject(L, 1);
                int             arg0 = (int)LuaDLL.lua_tonumber(L, 2);
                bool            o    = obj.CloseModalWait(arg0);
                LuaDLL.lua_pushboolean(L, o);
                return(1);
            }
            else
            {
                return(LuaDLL.luaL_throw(L, "invalid arguments to method: FairyGUI.Window.CloseModalWait"));
            }
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }
All Usage Examples Of FairyGUI.Window::CloseModalWait