====== ShowInContextMenu ======
Property of [[:scripting:api:tool-handler:start|IToolHandler]]
===== Description =====
Returns "Show in Context Menu" flag
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]]**
===== Syntax =====
==== JavaScript ====
var bValue = ToolHandler.ShowInContextMenu;
ToolHandler.ShowInContextMenu = bValue;
==== Visual Basic Script ====
bValue = ToolHandler.ShowInContextMenu
ToolHandler.ShowInContextMenu = bValue
==== C++ ====
VARIANT_BOOL bValue;
HRESULT hr = ToolHandler.get_ShowInContextMenu(&bValue);
hr = ToolHandler.put_ShowInContextMenu(bValue);
===== See Also =====
[[:scripting:api:tool-handler:start|IToolHandler]]
~~NOTOC~~