mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
32 lines
494 B
Markdown
32 lines
494 B
Markdown
---
|
|
title: KMManager.getVersion()
|
|
---
|
|
|
|
## Summary
|
|
|
|
The **`getVersion()`** method returns the version number of Keyman
|
|
Engine.
|
|
|
|
## Syntax
|
|
|
|
``` javascript
|
|
KMManager.getVersion()
|
|
```
|
|
|
|
### Returns
|
|
|
|
Returns Keyman Engine version number as `String`.
|
|
|
|
## Description
|
|
|
|
Use this method to get the version number of Keyman Engine.
|
|
|
|
## Examples
|
|
|
|
### Example: Using `getVersion()`
|
|
|
|
The following script illustrate the use of `getVersion()`:
|
|
|
|
``` javascript
|
|
String version = KMManager.getVersion();
|
|
```
|