sealed class HitResult
(source)
Represents all the different supported types of data that can be found from long clicking an element.
data class AUDIO : HitResult
If the HTML element was of type 'HTMLAudioElement'. |
|
data class EMAIL : HitResult
The type used if the URI is prepended with 'mailto:'. |
|
data class GEO : HitResult
The type used if the URI is prepended with 'geo:'. |
|
data class IMAGE : HitResult
If the HTML element was of type 'HTMLImageElement'. |
|
data class IMAGE_SRC : HitResult
If the HTML element was of type 'HTMLImageElement' and contained a URI. |
|
data class PHONE : HitResult
The type used if the URI is prepended with 'tel:'. |
|
data class UNKNOWN : HitResult
Default type if we're unable to match the type to anything. It may or may not have a src. |
|
data class VIDEO : HitResult
If the HTML element was of type 'HTMLVideoElement'. |
open val src: String |
data class AUDIO : HitResult
If the HTML element was of type 'HTMLAudioElement'. |
|
data class EMAIL : HitResult
The type used if the URI is prepended with 'mailto:'. |
|
data class GEO : HitResult
The type used if the URI is prepended with 'geo:'. |
|
data class IMAGE : HitResult
If the HTML element was of type 'HTMLImageElement'. |
|
data class IMAGE_SRC : HitResult
If the HTML element was of type 'HTMLImageElement' and contained a URI. |
|
data class PHONE : HitResult
The type used if the URI is prepended with 'tel:'. |
|
data class UNKNOWN : HitResult
Default type if we're unable to match the type to anything. It may or may not have a src. |
|
data class VIDEO : HitResult
If the HTML element was of type 'HTMLVideoElement'. |