====== Title ======
Property of [[:scripting:api:command-handler:start|ICommandHandler]]
===== Description =====
Title
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:BSTR|BSTR]]**
===== Syntax =====
==== JavaScript ====
var pbstrTitle = CommandHandler.Title;
CommandHandler.Title = pbstrTitle;
==== Visual Basic Script ====
pbstrTitle = CommandHandler.Title
CommandHandler.Title = pbstrTitle
==== C++ ====
BSTR pbstrTitle;
HRESULT hr = CommandHandler.get_Title(&pbstrTitle);
hr = CommandHandler.put_Title(pbstrTitle);
===== See Also =====
[[:scripting:api:command-handler:start|ICommandHandler]]
~~NOTOC~~