Name Property (Attribute Object)

Object: Attribute Object

Access: Read/Write

Prerequisites: None

Sets or returns the name of the attribute.

Usage

Attribute.Name

Arguments

None

Return Values

String. A string that represents the name of the attribute.

Examples

For Each attr In CompObj.Attributes
   sAttrName = "Attribute name: " & attr.Name
   MsgBox sAttrName
Next