COMAddIn.Description Property

Office Developer Reference

Gets or sets a descriptive String value for the specified COMAddin object. Read/write.

Syntax

expression.Description

expression   Required. A variable that represents a COMAddIn object.

Example

The following example displays the description text of the Microsoft Accessibility COM add-in for drawing.

Visual Basic for Applications
  MsgBox "The description of this " & _
    "COMAddIn is """ & Application.COMAddIns. _
    Item("msodraa9.ShapeSelect"). _
    Description & """

See Also