Lines Matching refs:gesturePath
649 injectGesture(gesturePath: GesturePath): Promise\<void>;
663 | gesturePath | [GesturePath](js-apis-accessibility-GesturePath.md#gesturepath) | Yes | Path of t…
686 let gesturePath: GesturePath = new GesturePath(100);
690 gesturePath.points.push(gesturePoint);
692 axContext.injectGesture(gesturePath).then(() => {
693 console.info(`Succeeded in inject gesture,gesturePath is ${gesturePath}`);
700 injectGesture(gesturePath: GesturePath, callback: AsyncCallback\<void>): void
714 | gesturePath | [GesturePath](js-apis-accessibility-GesturePath.md#gesturepath) | Yes | Path of t…
732 let gesturePath: GesturePath = new GesturePath(100);
735 gesturePath.points.push(gesturePoint);
737 axContext.injectGesture(gesturePath, (err: BusinessError) => {
742 console.info(`Succeeded in inject gesture,gesturePath is ${gesturePath}`);
747 injectGestureSync(gesturePath: GesturePath): void
761 | gesturePath | [GesturePath](js-apis-accessibility-GesturePath.md#gesturepath) | Yes | Path of th…
777 let gesturePath: GesturePath = new GesturePath(100);
780 gesturePath.points.push(gesturePoint);
782 axContext.injectGestureSync(gesturePath);