Lines Matching refs:recognizer
44 …cognizer) | Yes | Built-in gesture recognizer of the current component. Currently only a built-in…
51 …reRecognizer](#gesturerecognizer) | Gesture recognizer that is bound in parallel with the current …
55 Defines a gesture recognizer object.
61 Obtains the tag of this gesture recognizer.
71 | string | Tag of the current gesture recognizer.|
77 Obtains the type of this gesture recognizer.
87 …estureType](ts-gesture-customize-judge.md#gesturetype11) | Type of the current gesture recognizer.|
93 Obtains whether this gesture recognizer is a built-in gesture.
103 | boolean | Whether this gesture recognizer is a built-in gesture.|
109 Sets the enabled state of this gesture recognizer.
125 Obtains the enabled state of this gesture recognizer.
135 | boolean | Enabled state of the gesture recognizer.|
141 Obtains the state of this gesture recognizer.
151 | [GestureRecognizerState](#gesturerecognizerstate) | State of the gesture recognizer.|
157 Obtains the information about the component corresponding to this gesture recognizer.
167 …venttargetinfo) | Information about the component corresponding to the current gesture recognizer.|
173 Whether the current gesture recognizer is valid.
183 …he current gesture recognizer is valid. Returns **false** if the component bound to this recognize…
187 Enumerates the gesture recognizer states.
204 Provides the information about the component corresponding to the gesture recognizer.
224 … about the scrollable container component corresponding to the gesture recognizer. It inherits fro…
260 Defines a pan gesture recognizer object. It inherits from [GestureRecognizer](#gesturerecognizer).
266 Obtains the properties of this pan gesture recognizer.
276 …asic-gestures-pangesture.md#pangestureoptions) | Properties of the current pan gesture recognizer.|
282 Binds a custom gesture recognizer judgment callback to the component.
294 …back](#gesturerecognizerjudgebegincallback) | Yes | Custom gesture recognizer judgment callbac…
295 …onent, setting this parameter to **true** exposes the internal gesture recognizer of the composite…
301 Binds a custom gesture recognizer judgment callback to the component.
310 …back](#gesturerecognizerjudgebegincallback) | Yes | Custom gesture recognizer judgment callbac…
322 Represents a custom gesture recognizer judgment callback.
333 | current | [GestureRecognizer](#gesturerecognizer) | Yes | Gesture recognizer object that is abou…
334 | others | Array\<[GestureRecognizer](#gesturerecognizer)\> | Yes | Other gesture recognizer objec…
412 …[i].getType() == GestureControl.GestureType.PAN_GESTURE) { // Find the recognizer to form a parall…
413 this.currentRecognizer = current; // Save the recognizer of the current component.
414 this.childRecognizer = others[i]; // Save the recognizer to form a parallel gesture.
415 return others[i]; // Return the recognizer to form a parallel gesture.
421 …>) => { // When gesture recognition is about to be successful, set the recognizer's enabled state …
429 …f ScrollableTargetInfo && target.getId() == "inner") { // Identify the recognizer to work in paral…
431 …if (target.isEnd()) { // Dynamically control the recognizer's enabled state based on the current c…
462 …nizer.getState() != GestureRecognizerState.SUCCESSFUL) { // If neither recognizer is in the SUCCES…
556 …lt => { // When gesture recognition is about to be successful, set the recognizer's enabled state …