From 0299683452d1e0ad35522661ca216872d7eb0211 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B5=9D=E9=BA=97=E9=9D=88=E5=A4=A2?= Date: Mon, 30 Jun 2025 10:39:05 +0000 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0shiftAppWindowTouchEvent?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E7=A0=81=E6=8F=8F=E8=BF=B0=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 鵝麗靈夢 --- .../reference/apis-arkui/arkts-apis-window-f.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zh-cn/application-dev/reference/apis-arkui/arkts-apis-window-f.md b/zh-cn/application-dev/reference/apis-arkui/arkts-apis-window-f.md index db800835da0..4f42d2398ad 100644 --- a/zh-cn/application-dev/reference/apis-arkui/arkts-apis-window-f.md +++ b/zh-cn/application-dev/reference/apis-arkui/arkts-apis-window-f.md @@ -498,9 +498,9 @@ shiftAppWindowTouchEvent(sourceWindowId: number, targetWindowId: number, fingerI | 参数名 | 类型 | 必填 | 说明 | | -------------- | ------ | ----- | ----------------------- | -| sourceWindowId | number | 是 | 源窗口id。推荐使用[getWindowProperties()](arkts-apis-window-Window.md#getwindowproperties9)方法获取窗口id属性。 | -| targetWindowId | number | 是 | 目标窗口id。推荐使用[getWindowProperties()](arkts-apis-window-Window.md#getwindowproperties9)方法获取窗口id属性。 | -| fingerId | number | 是 | 触屏事件的fingerId。推荐使用[touchEvent](arkui-ts/ts-universal-events-touch.md#touchevent对象说明)事件中[touches](arkui-ts/ts-universal-events-touch.md#touchobject对象说明)属性获取id。 | +| sourceWindowId | number | 是 | 源窗口id。推荐使用[getWindowProperties()](arkts-apis-window-Window.md#getwindowproperties9)方法获取窗口id属性。该参数应为大于0的整数,小于等于0时会返回错误码1300016。 | +| targetWindowId | number | 是 | 目标窗口id。推荐使用[getWindowProperties()](arkts-apis-window-Window.md#getwindowproperties9)方法获取窗口id属性。该参数应为大于0的整数,小于等于0时会返回错误码1300016。 | +| fingerId | number | 是 | 触屏事件的fingerId。推荐使用[touchEvent](arkui-ts/ts-universal-events-touch.md#touchevent对象说明)事件中[touches](arkui-ts/ts-universal-events-touch.md#touchobject对象说明)属性获取id。该参数应为大于等于0的整数,小于0时会返回错误码1300016。 | **返回值:** -- Gitee