This site requires javascript.
Android Code Search
file:androidx/compose/ui/semantics/SemanticsProperties.kt symbol:text
search
close
info_outline
more_vert
Result 1 of 1
content_copy
Search Result Root
androidx/platform/frameworks/support
keyboard_arrow_right
Branch
Branch
androidx-main
keyboard_arrow_right
Search Result Path
compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/semantics/
SemanticsProperties.kt
content_copy
Preview
211:
212:
213:
/** @see SemanticsPropertyReceiver.text */
val
Text
=
AccessibilityKey<List<AnnotatedString>>(
226:
227:
228:
/** @see SemanticsPropertyReceiver.inputText */
val
Input
Text
= AccessibilityKey<AnnotatedString>(name =
"InputText"
)
297:
298:
299:
/** @see SemanticsPropertyReceiver.setText */
val
Set
Text
= ActionPropertyKey<(AnnotatedString) -> Boolean>(
"SetText"
)
328:
329:
330:
331:
332:
333:
/** @see SemanticsPropertyReceiver.copyText */
val
Copy
Text
= ActionPropertyKey<() -> Boolean>(
"CopyText"
)
/** @see SemanticsPropertyReceiver.cutText */
val
Cut
Text
= ActionPropertyKey<() -> Boolean>(
"CutText"
)
1009:
1010:
1011:
*/
var
SemanticsPropertyReceiver.
text
: AnnotatedString
get
() = throwSemanticsGetNotSupported()
1249:
1250:
1251:
*/
fun
SemanticsPropertyReceiver.set
Text
(
label: String? =
null
,
1382:
1383:
1384:
*/
fun
SemanticsPropertyReceiver.copy
Text
(label: String? =
null
, action: (() -> Boolean)?) {
this[SemanticsActions.CopyText] = AccessibilityAction(label, action)
1392:
1393:
1394:
*/
fun
SemanticsPropertyReceiver.cut
Text
(label: String? =
null
, action: (() -> Boolean)?) {
this[SemanticsActions.CutText] = AccessibilityAction(label, action)
1406:
1407:
1408:
*/
fun
SemanticsPropertyReceiver.paste
Text
(label: String? =
null
, action: (() -> Boolean)?) {
this[SemanticsActions.PasteText] = AccessibilityAction(label, action)
unfold_more
Show 24 more matching lines
chevron_left
1
chevron_right
Results per page
10
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Got it
Open branch androidx-main
Help