Click or drag to resize

GestureRecognizerDisallowSimultaneousExecution Method

Disallows the simultaneous execution with other gesture. This unlinks both gestures so this method only needs to be called once on one of the gestures. By default, gesures are not allowed to execute simultaneously, so you only need to call this method if you previously allowed the gestures to execute simultaneously. Pass null to disallow simulatneous execution with all gestures (i.e. you previously called AllowSimultaneousExecution with a null value.

Namespace:  DigitalRubyShared
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public void DisallowSimultaneousExecution(
	GestureRecognizer other
)

Parameters

other
Type: DigitalRubySharedGestureRecognizer
Gesture to no longer execute simultaneously with
See Also