Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== 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 ==== <code javascript> var strFileName = Project.FilePathByTitle(strTitle); </code>==== Visual Basic Script ==== <code vb> strFileName = Project.FilePathByTitle strTitle </code>==== C++ ==== <code cpp> BSTR strFileName; HRESULT hr = Project.FilePathByTitle(strTitle, &strFileName); </code>===== See Also ===== [[:scripting:api:project:start|IProject]] ~~NOTOC~~