SuperScrollView_LoopGridViewItemWrap.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  1. //this source code was auto-generated by tolua#, do not modify it
  2. using System;
  3. using LuaInterface;
  4. public class SuperScrollView_LoopGridViewItemWrap
  5. {
  6. public static void Register(LuaState L)
  7. {
  8. L.BeginClass(typeof(SuperScrollView.LoopGridViewItem), typeof(UnityEngine.MonoBehaviour));
  9. L.RegFunction("__eq", op_Equality);
  10. L.RegFunction("__tostring", ToLua.op_ToString);
  11. L.RegVar("UserObjectData", get_UserObjectData, set_UserObjectData);
  12. L.RegVar("UserIntData1", get_UserIntData1, set_UserIntData1);
  13. L.RegVar("UserIntData2", get_UserIntData2, set_UserIntData2);
  14. L.RegVar("UserStringData1", get_UserStringData1, set_UserStringData1);
  15. L.RegVar("UserStringData2", get_UserStringData2, set_UserStringData2);
  16. L.RegVar("ItemCreatedCheckFrameCount", get_ItemCreatedCheckFrameCount, set_ItemCreatedCheckFrameCount);
  17. L.RegVar("CachedRectTransform", get_CachedRectTransform, null);
  18. L.RegVar("ItemPrefabName", get_ItemPrefabName, set_ItemPrefabName);
  19. L.RegVar("Row", get_Row, set_Row);
  20. L.RegVar("Column", get_Column, set_Column);
  21. L.RegVar("ItemIndex", get_ItemIndex, set_ItemIndex);
  22. L.RegVar("ItemId", get_ItemId, set_ItemId);
  23. L.RegVar("IsInitHandlerCalled", get_IsInitHandlerCalled, set_IsInitHandlerCalled);
  24. L.RegVar("ParentGridView", get_ParentGridView, set_ParentGridView);
  25. L.RegVar("PrevItem", get_PrevItem, set_PrevItem);
  26. L.RegVar("NextItem", get_NextItem, set_NextItem);
  27. L.EndClass();
  28. }
  29. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  30. static int op_Equality(IntPtr L)
  31. {
  32. try
  33. {
  34. ToLua.CheckArgsCount(L, 2);
  35. UnityEngine.Object arg0 = (UnityEngine.Object)ToLua.ToObject(L, 1);
  36. UnityEngine.Object arg1 = (UnityEngine.Object)ToLua.ToObject(L, 2);
  37. bool o = arg0 == arg1;
  38. LuaDLL.lua_pushboolean(L, o);
  39. return 1;
  40. }
  41. catch (Exception e)
  42. {
  43. return LuaDLL.toluaL_exception(L, e);
  44. }
  45. }
  46. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  47. static int get_UserObjectData(IntPtr L)
  48. {
  49. object o = null;
  50. try
  51. {
  52. o = ToLua.ToObject(L, 1);
  53. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  54. object ret = obj.UserObjectData;
  55. ToLua.Push(L, ret);
  56. return 1;
  57. }
  58. catch(Exception e)
  59. {
  60. return LuaDLL.toluaL_exception(L, e, o, "attempt to index UserObjectData on a nil value");
  61. }
  62. }
  63. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  64. static int get_UserIntData1(IntPtr L)
  65. {
  66. object o = null;
  67. try
  68. {
  69. o = ToLua.ToObject(L, 1);
  70. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  71. int ret = obj.UserIntData1;
  72. LuaDLL.lua_pushinteger(L, ret);
  73. return 1;
  74. }
  75. catch(Exception e)
  76. {
  77. return LuaDLL.toluaL_exception(L, e, o, "attempt to index UserIntData1 on a nil value");
  78. }
  79. }
  80. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  81. static int get_UserIntData2(IntPtr L)
  82. {
  83. object o = null;
  84. try
  85. {
  86. o = ToLua.ToObject(L, 1);
  87. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  88. int ret = obj.UserIntData2;
  89. LuaDLL.lua_pushinteger(L, ret);
  90. return 1;
  91. }
  92. catch(Exception e)
  93. {
  94. return LuaDLL.toluaL_exception(L, e, o, "attempt to index UserIntData2 on a nil value");
  95. }
  96. }
  97. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  98. static int get_UserStringData1(IntPtr L)
  99. {
  100. object o = null;
  101. try
  102. {
  103. o = ToLua.ToObject(L, 1);
  104. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  105. string ret = obj.UserStringData1;
  106. LuaDLL.lua_pushstring(L, ret);
  107. return 1;
  108. }
  109. catch(Exception e)
  110. {
  111. return LuaDLL.toluaL_exception(L, e, o, "attempt to index UserStringData1 on a nil value");
  112. }
  113. }
  114. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  115. static int get_UserStringData2(IntPtr L)
  116. {
  117. object o = null;
  118. try
  119. {
  120. o = ToLua.ToObject(L, 1);
  121. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  122. string ret = obj.UserStringData2;
  123. LuaDLL.lua_pushstring(L, ret);
  124. return 1;
  125. }
  126. catch(Exception e)
  127. {
  128. return LuaDLL.toluaL_exception(L, e, o, "attempt to index UserStringData2 on a nil value");
  129. }
  130. }
  131. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  132. static int get_ItemCreatedCheckFrameCount(IntPtr L)
  133. {
  134. object o = null;
  135. try
  136. {
  137. o = ToLua.ToObject(L, 1);
  138. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  139. int ret = obj.ItemCreatedCheckFrameCount;
  140. LuaDLL.lua_pushinteger(L, ret);
  141. return 1;
  142. }
  143. catch(Exception e)
  144. {
  145. return LuaDLL.toluaL_exception(L, e, o, "attempt to index ItemCreatedCheckFrameCount on a nil value");
  146. }
  147. }
  148. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  149. static int get_CachedRectTransform(IntPtr L)
  150. {
  151. object o = null;
  152. try
  153. {
  154. o = ToLua.ToObject(L, 1);
  155. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  156. UnityEngine.RectTransform ret = obj.CachedRectTransform;
  157. ToLua.PushSealed(L, ret);
  158. return 1;
  159. }
  160. catch(Exception e)
  161. {
  162. return LuaDLL.toluaL_exception(L, e, o, "attempt to index CachedRectTransform on a nil value");
  163. }
  164. }
  165. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  166. static int get_ItemPrefabName(IntPtr L)
  167. {
  168. object o = null;
  169. try
  170. {
  171. o = ToLua.ToObject(L, 1);
  172. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  173. string ret = obj.ItemPrefabName;
  174. LuaDLL.lua_pushstring(L, ret);
  175. return 1;
  176. }
  177. catch(Exception e)
  178. {
  179. return LuaDLL.toluaL_exception(L, e, o, "attempt to index ItemPrefabName on a nil value");
  180. }
  181. }
  182. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  183. static int get_Row(IntPtr L)
  184. {
  185. object o = null;
  186. try
  187. {
  188. o = ToLua.ToObject(L, 1);
  189. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  190. int ret = obj.Row;
  191. LuaDLL.lua_pushinteger(L, ret);
  192. return 1;
  193. }
  194. catch(Exception e)
  195. {
  196. return LuaDLL.toluaL_exception(L, e, o, "attempt to index Row on a nil value");
  197. }
  198. }
  199. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  200. static int get_Column(IntPtr L)
  201. {
  202. object o = null;
  203. try
  204. {
  205. o = ToLua.ToObject(L, 1);
  206. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  207. int ret = obj.Column;
  208. LuaDLL.lua_pushinteger(L, ret);
  209. return 1;
  210. }
  211. catch(Exception e)
  212. {
  213. return LuaDLL.toluaL_exception(L, e, o, "attempt to index Column on a nil value");
  214. }
  215. }
  216. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  217. static int get_ItemIndex(IntPtr L)
  218. {
  219. object o = null;
  220. try
  221. {
  222. o = ToLua.ToObject(L, 1);
  223. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  224. int ret = obj.ItemIndex;
  225. LuaDLL.lua_pushinteger(L, ret);
  226. return 1;
  227. }
  228. catch(Exception e)
  229. {
  230. return LuaDLL.toluaL_exception(L, e, o, "attempt to index ItemIndex on a nil value");
  231. }
  232. }
  233. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  234. static int get_ItemId(IntPtr L)
  235. {
  236. object o = null;
  237. try
  238. {
  239. o = ToLua.ToObject(L, 1);
  240. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  241. int ret = obj.ItemId;
  242. LuaDLL.lua_pushinteger(L, ret);
  243. return 1;
  244. }
  245. catch(Exception e)
  246. {
  247. return LuaDLL.toluaL_exception(L, e, o, "attempt to index ItemId on a nil value");
  248. }
  249. }
  250. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  251. static int get_IsInitHandlerCalled(IntPtr L)
  252. {
  253. object o = null;
  254. try
  255. {
  256. o = ToLua.ToObject(L, 1);
  257. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  258. bool ret = obj.IsInitHandlerCalled;
  259. LuaDLL.lua_pushboolean(L, ret);
  260. return 1;
  261. }
  262. catch(Exception e)
  263. {
  264. return LuaDLL.toluaL_exception(L, e, o, "attempt to index IsInitHandlerCalled on a nil value");
  265. }
  266. }
  267. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  268. static int get_ParentGridView(IntPtr L)
  269. {
  270. object o = null;
  271. try
  272. {
  273. o = ToLua.ToObject(L, 1);
  274. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  275. SuperScrollView.LoopGridView ret = obj.ParentGridView;
  276. ToLua.Push(L, ret);
  277. return 1;
  278. }
  279. catch(Exception e)
  280. {
  281. return LuaDLL.toluaL_exception(L, e, o, "attempt to index ParentGridView on a nil value");
  282. }
  283. }
  284. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  285. static int get_PrevItem(IntPtr L)
  286. {
  287. object o = null;
  288. try
  289. {
  290. o = ToLua.ToObject(L, 1);
  291. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  292. SuperScrollView.LoopGridViewItem ret = obj.PrevItem;
  293. ToLua.Push(L, ret);
  294. return 1;
  295. }
  296. catch(Exception e)
  297. {
  298. return LuaDLL.toluaL_exception(L, e, o, "attempt to index PrevItem on a nil value");
  299. }
  300. }
  301. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  302. static int get_NextItem(IntPtr L)
  303. {
  304. object o = null;
  305. try
  306. {
  307. o = ToLua.ToObject(L, 1);
  308. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  309. SuperScrollView.LoopGridViewItem ret = obj.NextItem;
  310. ToLua.Push(L, ret);
  311. return 1;
  312. }
  313. catch(Exception e)
  314. {
  315. return LuaDLL.toluaL_exception(L, e, o, "attempt to index NextItem on a nil value");
  316. }
  317. }
  318. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  319. static int set_UserObjectData(IntPtr L)
  320. {
  321. object o = null;
  322. try
  323. {
  324. o = ToLua.ToObject(L, 1);
  325. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  326. object arg0 = ToLua.ToVarObject(L, 2);
  327. obj.UserObjectData = arg0;
  328. return 0;
  329. }
  330. catch(Exception e)
  331. {
  332. return LuaDLL.toluaL_exception(L, e, o, "attempt to index UserObjectData on a nil value");
  333. }
  334. }
  335. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  336. static int set_UserIntData1(IntPtr L)
  337. {
  338. object o = null;
  339. try
  340. {
  341. o = ToLua.ToObject(L, 1);
  342. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  343. int arg0 = (int)LuaDLL.luaL_checknumber(L, 2);
  344. obj.UserIntData1 = arg0;
  345. return 0;
  346. }
  347. catch(Exception e)
  348. {
  349. return LuaDLL.toluaL_exception(L, e, o, "attempt to index UserIntData1 on a nil value");
  350. }
  351. }
  352. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  353. static int set_UserIntData2(IntPtr L)
  354. {
  355. object o = null;
  356. try
  357. {
  358. o = ToLua.ToObject(L, 1);
  359. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  360. int arg0 = (int)LuaDLL.luaL_checknumber(L, 2);
  361. obj.UserIntData2 = arg0;
  362. return 0;
  363. }
  364. catch(Exception e)
  365. {
  366. return LuaDLL.toluaL_exception(L, e, o, "attempt to index UserIntData2 on a nil value");
  367. }
  368. }
  369. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  370. static int set_UserStringData1(IntPtr L)
  371. {
  372. object o = null;
  373. try
  374. {
  375. o = ToLua.ToObject(L, 1);
  376. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  377. string arg0 = ToLua.CheckString(L, 2);
  378. obj.UserStringData1 = arg0;
  379. return 0;
  380. }
  381. catch(Exception e)
  382. {
  383. return LuaDLL.toluaL_exception(L, e, o, "attempt to index UserStringData1 on a nil value");
  384. }
  385. }
  386. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  387. static int set_UserStringData2(IntPtr L)
  388. {
  389. object o = null;
  390. try
  391. {
  392. o = ToLua.ToObject(L, 1);
  393. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  394. string arg0 = ToLua.CheckString(L, 2);
  395. obj.UserStringData2 = arg0;
  396. return 0;
  397. }
  398. catch(Exception e)
  399. {
  400. return LuaDLL.toluaL_exception(L, e, o, "attempt to index UserStringData2 on a nil value");
  401. }
  402. }
  403. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  404. static int set_ItemCreatedCheckFrameCount(IntPtr L)
  405. {
  406. object o = null;
  407. try
  408. {
  409. o = ToLua.ToObject(L, 1);
  410. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  411. int arg0 = (int)LuaDLL.luaL_checknumber(L, 2);
  412. obj.ItemCreatedCheckFrameCount = arg0;
  413. return 0;
  414. }
  415. catch(Exception e)
  416. {
  417. return LuaDLL.toluaL_exception(L, e, o, "attempt to index ItemCreatedCheckFrameCount on a nil value");
  418. }
  419. }
  420. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  421. static int set_ItemPrefabName(IntPtr L)
  422. {
  423. object o = null;
  424. try
  425. {
  426. o = ToLua.ToObject(L, 1);
  427. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  428. string arg0 = ToLua.CheckString(L, 2);
  429. obj.ItemPrefabName = arg0;
  430. return 0;
  431. }
  432. catch(Exception e)
  433. {
  434. return LuaDLL.toluaL_exception(L, e, o, "attempt to index ItemPrefabName on a nil value");
  435. }
  436. }
  437. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  438. static int set_Row(IntPtr L)
  439. {
  440. object o = null;
  441. try
  442. {
  443. o = ToLua.ToObject(L, 1);
  444. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  445. int arg0 = (int)LuaDLL.luaL_checknumber(L, 2);
  446. obj.Row = arg0;
  447. return 0;
  448. }
  449. catch(Exception e)
  450. {
  451. return LuaDLL.toluaL_exception(L, e, o, "attempt to index Row on a nil value");
  452. }
  453. }
  454. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  455. static int set_Column(IntPtr L)
  456. {
  457. object o = null;
  458. try
  459. {
  460. o = ToLua.ToObject(L, 1);
  461. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  462. int arg0 = (int)LuaDLL.luaL_checknumber(L, 2);
  463. obj.Column = arg0;
  464. return 0;
  465. }
  466. catch(Exception e)
  467. {
  468. return LuaDLL.toluaL_exception(L, e, o, "attempt to index Column on a nil value");
  469. }
  470. }
  471. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  472. static int set_ItemIndex(IntPtr L)
  473. {
  474. object o = null;
  475. try
  476. {
  477. o = ToLua.ToObject(L, 1);
  478. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  479. int arg0 = (int)LuaDLL.luaL_checknumber(L, 2);
  480. obj.ItemIndex = arg0;
  481. return 0;
  482. }
  483. catch(Exception e)
  484. {
  485. return LuaDLL.toluaL_exception(L, e, o, "attempt to index ItemIndex on a nil value");
  486. }
  487. }
  488. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  489. static int set_ItemId(IntPtr L)
  490. {
  491. object o = null;
  492. try
  493. {
  494. o = ToLua.ToObject(L, 1);
  495. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  496. int arg0 = (int)LuaDLL.luaL_checknumber(L, 2);
  497. obj.ItemId = arg0;
  498. return 0;
  499. }
  500. catch(Exception e)
  501. {
  502. return LuaDLL.toluaL_exception(L, e, o, "attempt to index ItemId on a nil value");
  503. }
  504. }
  505. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  506. static int set_IsInitHandlerCalled(IntPtr L)
  507. {
  508. object o = null;
  509. try
  510. {
  511. o = ToLua.ToObject(L, 1);
  512. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  513. bool arg0 = LuaDLL.luaL_checkboolean(L, 2);
  514. obj.IsInitHandlerCalled = arg0;
  515. return 0;
  516. }
  517. catch(Exception e)
  518. {
  519. return LuaDLL.toluaL_exception(L, e, o, "attempt to index IsInitHandlerCalled on a nil value");
  520. }
  521. }
  522. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  523. static int set_ParentGridView(IntPtr L)
  524. {
  525. object o = null;
  526. try
  527. {
  528. o = ToLua.ToObject(L, 1);
  529. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  530. SuperScrollView.LoopGridView arg0 = (SuperScrollView.LoopGridView)ToLua.CheckObject<SuperScrollView.LoopGridView>(L, 2);
  531. obj.ParentGridView = arg0;
  532. return 0;
  533. }
  534. catch(Exception e)
  535. {
  536. return LuaDLL.toluaL_exception(L, e, o, "attempt to index ParentGridView on a nil value");
  537. }
  538. }
  539. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  540. static int set_PrevItem(IntPtr L)
  541. {
  542. object o = null;
  543. try
  544. {
  545. o = ToLua.ToObject(L, 1);
  546. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  547. SuperScrollView.LoopGridViewItem arg0 = (SuperScrollView.LoopGridViewItem)ToLua.CheckObject<SuperScrollView.LoopGridViewItem>(L, 2);
  548. obj.PrevItem = arg0;
  549. return 0;
  550. }
  551. catch(Exception e)
  552. {
  553. return LuaDLL.toluaL_exception(L, e, o, "attempt to index PrevItem on a nil value");
  554. }
  555. }
  556. [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))]
  557. static int set_NextItem(IntPtr L)
  558. {
  559. object o = null;
  560. try
  561. {
  562. o = ToLua.ToObject(L, 1);
  563. SuperScrollView.LoopGridViewItem obj = (SuperScrollView.LoopGridViewItem)o;
  564. SuperScrollView.LoopGridViewItem arg0 = (SuperScrollView.LoopGridViewItem)ToLua.CheckObject<SuperScrollView.LoopGridViewItem>(L, 2);
  565. obj.NextItem = arg0;
  566. return 0;
  567. }
  568. catch(Exception e)
  569. {
  570. return LuaDLL.toluaL_exception(L, e, o, "attempt to index NextItem on a nil value");
  571. }
  572. }
  573. }