====== FindShortKey ====== Method of [[:scripting:api:application:start|IApplication]] ===== Description ===== Search for existing ShortKey handler ===== Parameters ===== * [[scripting:api:data-type:VARIANT|VARIANT]] **nKey** * [[scripting:api:data-type:VARIANT|VARIANT]] **Syntax** (optional) ==== Return Value ==== * [[:scripting:api:short-key-handler:start|IShortKeyHandler]] **ppShortKeyHandler** ===== Syntax ===== ==== JavaScript ==== var ppShortKeyHandler = Application.FindShortKey(nKey, Syntax); ==== Visual Basic Script ==== ppShortKeyHandler = Application.FindShortKey nKey, Syntax ==== C++ ==== CComPtr pShortKeyHandler; HRESULT hr = Application.FindShortKey(nKey, Syntax, &pShortKeyHandler); ===== See Also ===== [[:scripting:api:application:start|IApplication]] ~~NOTOC~~