FairyGUI.LongPressGesture.Cancel C# (CSharp) Method

Cancel() public method

public Cancel ( ) : void
return void
        public void Cancel()
        {
            Timers.inst.Remove(__timer);
            _started = false;
        }

Usage Example

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