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