IKeymanProduct::Start
Start the Keyman Engine for the product. This is the function that the product startup application will call, usually during a splash screen. There is no requirement for the product startup application to remain in memory after calling this function. To start keyboard mapping with your product, you can use something like the following code (example in VBScript):
Declaration
Sub Start
Parameters
No | Name | Type | Description |
---|
Example Code
'Start keyboard mapping dim Keyman, KeymanProduct set Keyman = CreateObject("kmcomapi.TavultesoftKeyman") set KeymanProduct = Keyman.Products.ItemsByProductID(KeymanProductID) KeymanProduct.Start()