FairyGUI.LongPressGesture.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            Enable(false);
            _host = null;
        }

Usage Example

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