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