Start() 개인적인 메소드

Send out the selection message on start.
private Start ( ) : void
리턴 void
예제 #1
0
 static public int Start(IntPtr l)
 {
     try {
         UIPopupList self = (UIPopupList)checkSelf(l);
         self.Start();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #2
0
 static int Start(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         UIPopupList obj = (UIPopupList)ToLua.CheckObject(L, 1, typeof(UIPopupList));
         obj.Start();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }