Close() public method

Manually close the popup list.
public Close ( ) : void
return void
コード例 #1
0
 void OnClick()
 {
     if (popup != null)
     {
         list.Close();
         popup.show(list, title);
     }
 }
コード例 #2
0
    static int Close(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 1);
        UIPopupList obj = (UIPopupList)LuaScriptMgr.GetUnityObjectSelf(L, 1, "UIPopupList");

        obj.Close();
        return(0);
    }
コード例 #3
0
 static public int Close_s(IntPtr l)
 {
     try {
         UIPopupList.Close();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #4
0
 static public int Close(IntPtr l)
 {
     try {
         UIPopupList self = (UIPopupList)checkSelf(l);
         self.Close();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #5
0
 static int Close(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 0);
         UIPopupList.Close();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
コード例 #6
0
 static int Close(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         UIPopupList obj = (UIPopupList)ToLua.CheckObject(L, 1, typeof(UIPopupList));
         obj.Close();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }
コード例 #7
0
    public static int Close(IntPtr l)
    {
        int result;

        try
        {
            UIPopupList uIPopupList = (UIPopupList)LuaObject.checkSelf(l);
            uIPopupList.Close();
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
コード例 #8
0
    private static int Close(IntPtr L)
    {
        int result;

        try
        {
            ToLua.CheckArgsCount(L, 1);
            UIPopupList uIPopupList = (UIPopupList)ToLua.CheckObject(L, 1, typeof(UIPopupList));
            uIPopupList.Close();
            result = 0;
        }
        catch (Exception e)
        {
            result = LuaDLL.toluaL_exception(L, e, null);
        }
        return(result);
    }