Description: The notes relating to the appointment. Any rich text notes are returned as plain text. You may both set and get this property.
Type: String
Default: Empty string
Example:
Dim session As Object
Dim user As Object
Dim appts As Object
Dim appt As Object
Set session = CreateObject("OfficeTalk.Session")
Set user = session.Logon(login name, password)
Set appts = user.appointments
Set appt = appts.Add
appt.Notes = "These are my notes"
MsgBox "My appointment notes are: " & appt.Notes
End If