FairyGUI.UIPainter.EM_Reload C# (CSharp) Method

EM_Reload() public method

public EM_Reload ( ) : void
return void
        public void EM_Reload()
        {
            _captured = false;
        }

Usage Example

 static public int EM_Reload(IntPtr l)
 {
     try {
         FairyGUI.UIPainter self = (FairyGUI.UIPainter)checkSelf(l);
         self.EM_Reload();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.UIPainter::EM_Reload