Title Property

Applies To

AddIn Object, Workbook Object.

Description

Returns or sets the long, descriptive title for the object, as a string. Read-only for AddIn, read-write for Workbook.

See Also

Author Property, AxisTitle Property, ChartTitle Property, Comments Property, Keywords Property.

Example

This example displays the title and filename of every add-in.


For Each a In AddIns
    MsgBox a.Title & " has the filename " & a.Name
Next a

This example sets the title of the active workbook.


ActiveWorkbook.Title = "Weekly Sales Summary"

In Microsoft Excel for Windows 95, this property has been replaced by a built-in OLE document property. For more information about OLE document properties, see BuiltinDocumentProperties.