Type | Description | |||
Mask as String |
A String expression that specifies the mask of the properties to be
requested.
The Mask parameter can include:
| |||
Variant | A safe array of Property objects whose name matches the giving mask. |
The following code enumerates the Properties of the root component, that starts with Ve:
Dim c As Variant For Each c In ICalendar1.Root.Properties.Enumerate("Ve*") Debug.Print "Name " & c.Name Next