Value Property (Attribute Object)

Object: Attribute Object

Access: Read/Write

Prerequisites: None

Sets or returns the value of the attribute.

Usage

Attribute.Value

Arguments

None

Return Values

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

Examples

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