FairyGUI.UIPanel.EM_Reload C# (CSharp) Метод

EM_Reload() публичный Метод

public EM_Reload ( ) : void
Результат void
        public void EM_Reload()
        {
            if (_ui != null)
            {
                _ui.Dispose();
                _ui = null;
            }
        }

Usage Example

Пример #1
0
 static public int EM_Reload(IntPtr l)
 {
     try {
         FairyGUI.UIPanel self = (FairyGUI.UIPanel)checkSelf(l);
         self.EM_Reload();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.UIPanel::EM_Reload