---
title: "accessibilityDropPoint(_:description:isEnabled:)"
framework: swiftui
role: symbol
role_heading: Instance Method
path: "swiftui/view/accessibilitydroppoint(_:description:isenabled:)"
---

# accessibilityDropPoint(_:description:isEnabled:)

The point an assistive technology should use to end a drag interaction.

## Declaration

```swift
nonisolated func accessibilityDropPoint(_ point: UnitPoint, description: LocalizedStringKey, isEnabled: Bool) -> ModifiedContent<Self, AccessibilityAttachmentModifier>
```

## Parameters

- `point`: The point the assistive technology will perform a drop interaction.
- `description`: The description of the drop interaction.
- `isEnabled`: If true the accessibility drop point is applied; otherwise the accessibility drop point is unchanged.

## Discussion

Discussion Use this modifier when you need to provide a description to users when prompted end a drag interaction. struct FolderView: View {     var folderName: String

var body: some View {         FolderIcon(folderName: folderName)             .accessibilityDropPoint(                 .center, description: Text("Move to \(folderName)"))     } } By default, if an accessible view or its subtree has drag and/or drop interactions, they will be automatically exposed by assistive technologies. However, if there is more than one such interaction, each drag or drop should have a description to disambiguate it and give a good user experience. note: An accessibility element can have multiple points for a drop, provided they have different descriptions.

## See Also

### Making gestures accessible

- [accessibilityActivationPoint(_:)](swiftui/view/accessibilityactivationpoint(_:).md)
- [accessibilityActivationPoint(_:isEnabled:)](swiftui/view/accessibilityactivationpoint(_:isenabled:).md)
- [accessibilityDragPoint(_:description:)](swiftui/view/accessibilitydragpoint(_:description:).md)
- [accessibilityDragPoint(_:description:isEnabled:)](swiftui/view/accessibilitydragpoint(_:description:isenabled:).md)
- [accessibilityDropPoint(_:description:)](swiftui/view/accessibilitydroppoint(_:description:).md)
- [accessibilityDirectTouch(_:options:)](swiftui/view/accessibilitydirecttouch(_:options:).md)
- [accessibilityZoomAction(_:)](swiftui/view/accessibilityzoomaction(_:).md)
- [AccessibilityDirectTouchOptions](swiftui/accessibilitydirecttouchoptions.md)
- [AccessibilityZoomGestureAction](swiftui/accessibilityzoomgestureaction.md)
