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