Description: The notes associated with the task. 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 tasks As Object
Dim task As Object
Set session = CreateObject("OfficeTalk.Session")
Set user = Call session.Logon(login name, password)
Set tasks = user.tasks
Set task = tasks.Add
task.Notes = "These are my notes"
MsgBox "My appointment notes are: " & task.Notes
End If