SlideRange.Comments Property (PowerPoint)
Returns a Comments object that represents a collection of comments. Read-only.
Syntax
expression .Comments
expression A variable that represents a SlideRange object.
Return Value
Comments
Example
The following example adds a comment to a slide.
Sub AddNewComment()
ActivePresentation.Slides(1).Comments.Add _
Left:=0, Top:=0, Author:="John Doe", AuthorInitials:="jd", _
Text:="Please check this spelling again before the next draft."
End Sub