SetBoundsChangedFlag() public method

Notify the component the bounds should recaculate.
public SetBoundsChangedFlag ( ) : void
return void
Example #1
0
 static public int SetBoundsChangedFlag(IntPtr l)
 {
     try {
         FairyGUI.GComponent self = (FairyGUI.GComponent)checkSelf(l);
         self.SetBoundsChangedFlag();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static int SetBoundsChangedFlag(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         FairyGUI.GComponent obj = (FairyGUI.GComponent)ToLua.CheckObject(L, 1, typeof(FairyGUI.GComponent));
         obj.SetBoundsChangedFlag();
         return(0);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }