UIGestureProbe Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A delegate signature used by the UIGestureRecognizer class to determine if a gesture can be initiated.
public delegate bool UIGestureProbe(UIGestureRecognizer recognizer);
type UIGestureProbe = delegate of UIGestureRecognizer -> bool
Parameters
- recognizer
- UIGestureRecognizer
The recognizer that is a candidate for recognizing the gesture.
Return Value
true
if the gesture recognizer can proceed with interpreting the touches.