# @ohos.accessibility.GesturePoint (手势触摸点) GesturePoint表示手势触摸点。 本模å—用于创建辅助功能注入手势所需的手势路径的触摸点信æ¯ã€‚ > **说明:** > > - 本模å—首批接å£ä»ŽAPI version 9开始支æŒï¼ŒåŽç»ç‰ˆæœ¬çš„æ–°å¢žæŽ¥å£ï¼Œé‡‡ç”¨ä¸Šè§’æ ‡å•ç‹¬æ ‡è®°æŽ¥å£çš„起始版本。 ## å¯¼å…¥æ¨¡å— ```ts import { GesturePoint } from '@kit.AccessibilityKit'; ``` ## GesturePoint 表示手势触摸点。 **系统能力**:以下å„项对应的系统能力å‡ä¸º SystemCapability.BarrierFree.Accessibility.Core ### 属性 | åç§° | 类型 | å¯è¯» | å¯å†™ | 说明 | | --------- | ------ | ---- | ---- | ------- | | positionX | number | 是 | 是 | 触摸点Xåæ ‡ã€‚ | | positionY | number | 是 | 是 | 触摸点Yåæ ‡ã€‚ | ### constructor<sup>(deprecated)</sup> constructor(positionX: number, positionY: number); æž„é€ å‡½æ•°ã€‚ > **说明:** > > 从API version 12开始废弃。 **系统能力**:SystemCapability.BarrierFree.Accessibility.Core **傿•°ï¼š** | 傿•°å | 类型 | å¿…å¡« | 说明 | | -------- | -------- | -------- | -------- | | positionX | number | 是 | 触摸点Xåæ ‡ã€‚ | | positionY | number | 是 | 触摸点Yåæ ‡ã€‚ | **示例:** ```ts import { GesturePoint } from '@kit.AccessibilityKit'; let gesturePoint = new GesturePoint(1, 2); ```