Property of IBaseDocument
Title of the document
Read-Write Property of type BSTR
var pstrVal = BaseDocument.Title; BaseDocument.Title = pstrVal;
==== Visual Basic Script ====
pstrVal = BaseDocument.Title BaseDocument.Title = pstrVal
==== C++ ====
BSTR pstrVal; HRESULT hr = BaseDocument.get_Title(&pstrVal); hr = BaseDocument.put_Title(pstrVal);
===== See Also ===== IBaseDocument