====== FilePathByTitle ======
Method of [[:scripting:api:project:start|IProject]]
===== Description =====
Resolve file by title
===== Parameters =====
* [[scripting:api:data-type:BSTR|BSTR]] **strTitle**
==== Return Value ====
* [[scripting:api:data-type:BSTR|BSTR]] **strFileName**
===== Syntax =====
==== JavaScript ====
var strFileName = Project.FilePathByTitle(strTitle);
==== Visual Basic Script ====
strFileName = Project.FilePathByTitle strTitle
==== C++ ====
BSTR strFileName;
HRESULT hr = Project.FilePathByTitle(strTitle, &strFileName);
===== See Also =====
[[:scripting:api:project:start|IProject]]
~~NOTOC~~