====== Title ======
Property of [[:scripting:api:pane:start|IPane]]
===== Description =====
Returns pane title
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:BSTR|BSTR]]**
===== Syntax =====
==== JavaScript ====
var sTitle = Pane.Title;
Pane.Title = sTitle;
==== Visual Basic Script ====
sTitle = Pane.Title
Pane.Title = sTitle
==== C++ ====
BSTR sTitle;
HRESULT hr = Pane.get_Title(&sTitle);
hr = Pane.put_Title(sTitle);
===== See Also =====
[[:scripting:api:pane:start|IPane]]
~~NOTOC~~