Package apple.uikit.enums
Class UITextDropAction
- java.lang.Object
-
- apple.uikit.enums.UITextDropAction
-
public final class UITextDropAction extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static longInsertInserts the text at the provided location.static longReplaceAllReplaces all the text in the target with the dropped text, via `setAttributedText:`.static longReplaceSelectionIf the target has a selection, replaces the selection with the dropped text.
-
-
-
Field Detail
-
Insert
public static final long Insert
Inserts the text at the provided location. Other text is not affected.- See Also:
- Constant Field Values
-
ReplaceSelection
public static final long ReplaceSelection
If the target has a selection, replaces the selection with the dropped text. Otherwise, this behaves the same as UITextDropInsert.- See Also:
- Constant Field Values
-
ReplaceAll
public static final long ReplaceAll
Replaces all the text in the target with the dropped text, via `setAttributedText:`.- See Also:
- Constant Field Values
-
-