static int set_onScrollCompleted(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            UnityEngine.UI.Extensions.UITableView obj = (UnityEngine.UI.Extensions.UITableView)o;
            UnityEngine.UI.Extensions.UITableView.OnScrollCompleted arg0 = (UnityEngine.UI.Extensions.UITableView.OnScrollCompleted)ToLua.CheckDelegate <UnityEngine.UI.Extensions.UITableView.OnScrollCompleted>(L, 2);
            obj.onScrollCompleted = arg0;
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o, "attempt to index onScrollCompleted on a nil value"));
        }
    }
    static int get_onScrollCompleted(IntPtr L)
    {
        object o = null;

        try
        {
            o = ToLua.ToObject(L, 1);
            UnityEngine.UI.Extensions.UITableView obj = (UnityEngine.UI.Extensions.UITableView)o;
            UnityEngine.UI.Extensions.UITableView.OnScrollCompleted ret = obj.onScrollCompleted;
            ToLua.Push(L, ret);
            return(1);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e, o, "attempt to index onScrollCompleted on a nil value"));
        }
    }