mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
Ensure that the IME interface methods are all defined for both browser and webview modes. Deprecate 'Element' methods and replace with 'TextStore' to clarify return type. Add deprecation flags where needed and update documentation accordingly. Fixes: #16144
37 lines
569 B
Markdown
37 lines
569 B
Markdown
---
|
|
title: ShowHelp (deprecated)
|
|
---
|
|
|
|
## Summary
|
|
|
|
Shows the on-screen keyboard at the requested (x, y) coordinates.
|
|
|
|
## Syntax
|
|
|
|
```js
|
|
keyman.interface.ShowHelp(x, y);
|
|
keyman.interface.showHelp(x, y);
|
|
KeymanWeb.ShowHelp(x, y);
|
|
KeymanWeb.showHelp(x, y);
|
|
```
|
|
|
|
### Parameters
|
|
|
|
`x`
|
|
: Type: `number`
|
|
: x-coordinate for display of the OSK.
|
|
|
|
`y`
|
|
: Type: `number`
|
|
: y-coordinate for display of the OSK.
|
|
|
|
### Return Value
|
|
|
|
`undefined`
|
|
|
|
### Replaced by
|
|
|
|
This function is deprecated; see instead:
|
|
|
|
[`keyman.osk.setPos()`](../osk/setPos),
|
|
[`keyman.osk.show()`](../osk/show)
|