A Properties collection contains all of the persistent properties and collections that are attached to an object through a particular interface. The Workspace object exposes three separate Properties collections. These collections are exposed by:
Set variable = object.Properties(index)
The Properties collection syntax has the following parts.
Part | Description |
Variable | A variable declared as a ReposProperty object. Receives the specified property. |
Object | An object expression; evaluates to an object that exposes:
as the default interface. |
Index | An integer index that identifies which property in the collection is to be addressed. The valid range is from one to the number of elements in the collection. The number of elements in the collection is specified by object.Properties.Count. |
For details on how to access a member of an interface that is not the default interface, see Accessing Automation Object Members.