====== onTitle ======
Event of [[:scripting:api:script-command-handler:start|IScriptCommandHandler]]
===== Description =====
Handler for dynamic update of [[:scripting:api:command-handler:title|ICommandHandler::Title]]
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:VARIANT|VARIANT]]**
===== Syntax =====
==== JavaScript ====
var Action = ScriptCommandHandler.onTitle;
ScriptCommandHandler.onTitle = Action;
==== Visual Basic Script ====
Action = ScriptCommandHandler.onTitle
ScriptCommandHandler.onTitle = Action
==== C++ ====
VARIANT Action;
HRESULT hr = ScriptCommandHandler.get_onTitle(&Action);
hr = ScriptCommandHandler.put_onTitle(Action);
===== See Also =====
[[:scripting:api:script-command-handler:start|IScriptCommandHandler]]
~~NOTOC~~