Slide.Comments property (PowerPoint)
Returns a Comments object that represents a collection of comments. Read-only.
Syntax
expression.Comments
expression A variable that represents a Slide 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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.