(Contents)(Previous)(Next)

Name (property)

Description: Returns a string representing the name or description of the item. For example, the description of a task or the subject of a mail message or the name of a meeting.
Type: String
Example:
Set appts = user.Appointments

Set appt = appts.Add

appt.Name = "Meeting"

appt.Update

MsgBox appt.Name


Next