LongPressGestureRecognizer Properties |
The LongPressGestureRecognizer type exposes the following members.
Name | Description | |
---|---|---|
AllowSimultaneousExecutionIfPlatformSpecificViewsAreDifferent |
Allows simultaneous execution if the platform specific views do no match. Default is true.
(Inherited from GestureRecognizer.) | |
ClearTrackedTouchesOnEndOrFail |
Whether tracked touches are cleared when the gesture ends or fails, default is false. By setting to true, you allow the gesture to
possibly execute again with a different touch even if the original touch it failed on is still on-going. This is a special case,
so be sure to watch for problems if you set this to true, as leaving it false ensures the most correct behavior, especially
with lots of gestures at once.
(Inherited from GestureRecognizer.) | |
CurrentTrackedTouches |
The current tracked touches for the gesture
(Inherited from GestureRecognizer.) | |
CustomData |
Custom data for the gesture that you can attach, or just leave null if you don't need this
This is useful if you want to retrieve this in a callback function, but it is not require
for the gesture to work properly
(Inherited from GestureRecognizer.) | |
DeltaX |
Change in focus x in pixels
(Inherited from GestureRecognizer.) | |
DeltaY |
Change in focus y in pixels
(Inherited from GestureRecognizer.) | |
DistanceX |
The distance (in pixels) the gesture focus has moved from where it started along the x axis
(Inherited from GestureRecognizer.) | |
DistanceY |
The distance (in pixels) the gesture focus has moved from where it started along the y axis
(Inherited from GestureRecognizer.) | |
Enabled |
Whether the gesture is Enabled. Default is true.
(Inherited from GestureRecognizer.) | |
FocusX |
Focus x value in pixels (average of all touches)
(Inherited from GestureRecognizer.) | |
FocusY |
Focus y value in pixels (average of all touches)
(Inherited from GestureRecognizer.) | |
IsRestarting |
True if gesture is in process of restarting, false otherwise
(Inherited from GestureRecognizer.) | |
MaximumNumberOfTouchesToTrack |
The maximum number of touches to track. This gesture will never track more touches than this. Default is usually 1 or 2.
Not all gestures will honor values higher than 1.
(Inherited from GestureRecognizer.) | |
MinimumDurationSeconds |
The number of seconds that the touch must stay down to begin executing. Default is 0.6.
| |
MinimumNumberOfTouchesToTrack |
The minimum number of touches to track. This gesture will not start unless this many touches are tracked. Default is usually 1 or 2.
Not all gestures will honor values higher than 1.
(Inherited from GestureRecognizer.) | |
PlatformSpecificView |
A platform specific view object that this gesture can execute in, null if none
(Inherited from GestureRecognizer.) | |
PlatformSpecificViewScale |
The platform specific view scale (default is 1.0). Change this if the view this gesture is attached to is being scaled.
(Inherited from GestureRecognizer.) | |
Pressure |
Average pressure of all tracked touches
(Inherited from GestureRecognizer.) | |
PrevFocusX |
Previous focus x
(Inherited from GestureRecognizer.) | |
PrevFocusY |
Previous focus y
(Inherited from GestureRecognizer.) | |
ReceivedAdditionalTouches |
Whether additional touches were added to the gesture since the last execute state.
(Inherited from GestureRecognizer.) | |
RequireGestureRecognizersToFail |
If this gesture reaches the EndPending state and the specified gestures fail,
this gestures will end. If the specified gesture begins, executes or ends,
then this gesture will immediately fail.
(Inherited from GestureRecognizer.) | |
RequireGestureRecognizerToFail |
Convenience method to add / remove one gesture to require failure on. Set to null to clear all require gestures to fail.
(Inherited from GestureRecognizer.) | |
ResetOnEnd |
Whether the gesture should reset when it ends
(Inherited from GestureRecognizer.) | |
Speed |
The speed of the gesture in pixels using focus
(Inherited from GestureRecognizer.) | |
StartFocusX |
Start focus x value in pixels (average of all touches)
(Inherited from GestureRecognizer.) | |
StartFocusY |
Start focus y value in pixels (average of all touches)
(Inherited from GestureRecognizer.) | |
State |
Get the current gesture recognizer state
(Inherited from GestureRecognizer.) | |
ThresholdUnits |
How many units away the long press can move before failing. After the long press begins,
it is allowed to move any distance and stay executing. Default is 0.35.
| |
TrackedTouchCountIsWithinRange |
Whether the current number of tracked touches is within the min and max number of touches to track
(Inherited from GestureRecognizer.) | |
VelocityX |
Velocity x in pixels using focus
(Inherited from GestureRecognizer.) | |
VelocityY |
Velocity y in pixels using focus
(Inherited from GestureRecognizer.) |