mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +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
31 lines
485 B
Markdown
31 lines
485 B
Markdown
---
|
|
title: ShowPinnedHelp (deprecated)
|
|
---
|
|
|
|
## Summary
|
|
|
|
Shows the on-screen keyboard and locks it at the resulting location.
|
|
|
|
## Syntax
|
|
|
|
```js
|
|
keyman.interface.ShowPinnedHelp(x, y);
|
|
keyman.interface.showPinnedHelp(x, y);
|
|
KeymanWeb.ShowPinnedHelp(x, y);
|
|
KeymanWeb.showPinnedHelp(x, y);
|
|
```
|
|
|
|
### Parameters
|
|
|
|
None.
|
|
|
|
### Return Value
|
|
|
|
`undefined`
|
|
|
|
### Replaced by
|
|
|
|
This function is deprecated; see instead:
|
|
|
|
* [`keyman.osk.setRect()`](../osk/setRect),
|
|
* [`keyman.osk.show()`](../osk/show)
|