diff --git a/en/application-dev/reference/arkui-ts/ts-universal-events-drag-drop.md b/en/application-dev/reference/arkui-ts/ts-universal-events-drag-drop.md
index 8265f09fec7d8b2aeefad8364169070c57cc7932..c0f7a5c444eced0422f3758d2310296df9fadd8b 100644
--- a/en/application-dev/reference/arkui-ts/ts-universal-events-drag-drop.md
+++ b/en/application-dev/reference/arkui-ts/ts-universal-events-drag-drop.md
@@ -36,12 +36,12 @@ Provides additional information required for dragging an item.
| selectedIndex | number | Index of the dragged item in the parent container. The value of **selectedindex** starts from **0**.
This attribute is valid only in the drag event of the **\** component.|
| insertIndex | number | Index of the element into which the dragged item is dropped in the **List** component. The value of **insertIndex** starts from **0**.
This attribute is valid only in the drag event of the **\** component.|
-### DragEvent
+## DragEvent
| Name | Type | Description |
| ------ | ------ | ---------------- |
-| getX() | number | X-coordinate of the item that is being dragged, in vp.|
-| getY() | number | Y-coordinate of the item that is being dragged, in vp.|
+| getX() | number | X-coordinate of the drag position relative to the upper left corner of the screen, in vp.|
+| getY() | number | Y-coordinate of the drag position relative to the upper left corner of the screen, in vp.|
## Example