diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-gesture-settings.md b/zh-cn/application-dev/reference/arkui-ts/ts-gesture-settings.md
index d31658612f6d098d7bac990af1899929c541aed6..5337cc9ae0a639421321006cec0548eee90ebf62 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-gesture-settings.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-gesture-settings.md
@@ -60,6 +60,10 @@
| timestamp8+ | number | 事件时间戳。 |
| target8+ | [EventTarget](ts-universal-events-click.md#eventtarget8对象说明) | 触发手势事件的元素对象显示区域。 |
| source8+ | [SourceType](#sourcetype枚举说明) | 事件输入设备。 |
+| pressure9+ | number | 按压的压力大小。 |
+| tiltX9+ | number | 手写笔在设备平面上的投影与设备平面X轴的夹角。 |
+| tiltY9+ | number | 手写笔在设备平面上的投影与设备平面Y轴的夹角。 |
+| sourceTool9+ | [SourceTool](#sourcetool枚举说明) | 事件输入源。 |
## SourceType枚举说明
| 名称 | 描述 |
@@ -77,6 +81,13 @@
| localX | number | 相对于当前组件元素左上角的x轴坐标。 |
| localY | number | 相对于当前组件元素左上角的y轴坐标。 |
+## SourceTool枚举说明
+| 名称 | 描述 |
+| -------- | -------- |
+| Unknown | 未知输入源。 |
+| Finger | 手指输入。 |
+| Pen | 手写笔输入。 |
+
## 示例
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-component-id.md b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-component-id.md
index f1ad36dfd7f9caec182fb07f44812112c588ebe6..6a779423197d371aa4a5f96447f5dd12b16a4f72 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-component-id.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-component-id.md
@@ -229,7 +229,11 @@ struct IdExample {
}
}
},
- source: SourceType.Mouse
+ source: SourceType.Mouse,
+ pressure: 1,
+ tiltX: 1,
+ tiltY: 1,
+ sourceTool: SourceTool.Unknown
}
sendMouseEvent(mouseEvent) // 发送鼠标事件
}, 2000)