Multivalue MeetingItem.ItemProperty

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a piece of code which loops through the ItemProperty objects in a
MeetingItem. Some of the returned properties are multi-valued, for instance
if I apply the following code -

For Each olProperty In olCalendarItem.ItemProperties
olProperty.Value.Count
Next

- to the 'Actions' ItemProperty the result comes back with 4.

My question is , how do I get at the individual values within this
'collection'?

Regards,

Terry.
 
A multivalued property is an array. Assign the property return to an array
and iterate the array members to get the individual members of the array.
 
Back
Top