mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-21 07:47:40 +00:00
Deprecate the following obsolete functions and properties: * `keyman.helpURL` * `keyman.util.rgba` * `keyman.util.toFloat` * `keyman.util.toNumber` * `keyman.util.toNzString` Use correct language for code blocks in Keyman Engine for Web documentation. Test-bot: skip
27 lines
345 B
Markdown
27 lines
345 B
Markdown
---
|
|
title: show
|
|
---
|
|
|
|
## Summary
|
|
|
|
Display, hide or toggle OSK visibility.
|
|
|
|
## Syntax
|
|
|
|
```js
|
|
keyman.osk.show(mode);
|
|
```
|
|
|
|
### Parameters
|
|
|
|
`mode`
|
|
: Type: `boolean` *optional*
|
|
: `true` to display, `false` to hide, omitted to toggle.
|
|
|
|
### Return Value
|
|
|
|
`undefined`
|
|
|
|
## Description
|
|
|
|
Visibility will be toggled on or off if the argument is omitted.
|