Title

Property of IBaseDocument

Description

Title of the document

Property type

Read-Write Property of type BSTR

Syntax

JavaScript

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