TextSelectionChangeCause
TextSelectionChangeCause
#
Bases: Enum
Indicates what triggered the change in selected text.
DOUBLE_TAP = 'doubleTap'
#
The user tapped twice in quick succession on the text and that caused the selection (or the location of the cursor) to change.
DRAG = 'drag'
#
The user used the mouse to change the selection by dragging over a piece of text.
FORCE_PRESS = 'forcePress'
#
The user force-pressed the text and that caused the selection (or the location of the cursor) to change.
KEYBOARD = 'keyboard'
#
The user used the keyboard to change the selection or the location of the cursor.
Keyboard-triggered selection changes may be caused by the IME as well as by accessibility tools (e.g. TalkBack on Android).
LONG_PRESS = 'longPress'
#
The user long-pressed the text and that caused the selection (or the location of the cursor) to change.
SCRIBBLE = 'scribble'
#
The user used iPadOS 14+ Scribble to change the selection.
TAP = 'tap'
#
The user tapped on the text and that caused the selection (or the location of the cursor) to change.
TOOLBAR = 'toolbar'
#
The user used the selection toolbar to change the selection or the location of the cursor.
An example is when the user taps on select all in the tool bar.
UNKNOWN = 'unknown'
#
The cause of the selection change is unknown or could not be determined.