property Component.Properties as Properties
Retrieves the properties of the current component.

TypeDescription
Properties A Properties collection that holds Property objects that belongs to the current component.
The Properties property retrieves the properties collection of the current component. The Add method of the Properties object adds a new property to the current component. The Clear method clears the properties collection. The Remove method removes the property from the Properties collection.

The following is a simple example of an iCalendar component:

BEGIN:VEVENT
UID:19970610T172345Z-AF23B2@example.com
DTSTAMP:19970610T172345Z
DTSTART:19970714T170000Z
DTEND:19970715T040000Z
SUMMARY:Bastille Day Party
END:VEVENT

The UID, DTSTAMP, DTSTART, DTEND and SUMMARY are properties of the VEVENT component.