TextEvent class
An object dispatches a TextEvent object when a user enters text in a text field or clicks a hyperlink in an HTML-enabled text field.
There are two types of text events:
Constructors
Properties
- bubbles → bool
-
Indicates whether an event is a bubbling event. If the event can bubble,
this value is true; otherwise it is false. [...]
read-only, inherited
- captures → bool
-
Indicates whether an event is a capturing event.
read-only, inherited
- currentTarget → EventDispatcher
-
The object that is actively processing the Event object with an event
listener. [...]
read-only, inherited
- eventPhase → EventPhase
-
The current phase in the event flow. [...]
read-only, inherited
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- isDefaultPrevented → bool
-
read-only
- isImmediatePropagationStopped → bool
-
Indicates if the propagation of this event has been stopped. [...]
read-only, inherited
- isPropagationStopped → bool
-
Indicates if the propagation of this event has been stopped. [...]
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- target → EventDispatcher
-
The event target. [...]
read-only, inherited
- text → String
-
For a TEXT_INPUT event, the character or sequence of characters entered
by the user. For a LINK event, the text of the event attribute of the
href attribute of the tag.
final
- type → String
-
The type of event.
read-only, inherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
preventDefault(
) → void -
stopImmediatePropagation(
) → void -
Prevents processing of any event listeners in the current node and any
subsequent nodes in the event flow. [...]
inherited
-
stopPropagation(
) → void -
Prevents processing of any event listeners in nodes subsequent to the
current node in the event flow. [...]
inherited
-
toString(
) → String -
Returns a string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited
Constants
- LINK → const String
-
'link'
- TEXT_INPUT → const String
-
'textInput'