scripting:api:command-handler:title

Title

Property of ICommandHandler

Title

Read-Write Property of type BSTR

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 ===== ICommandHandler