Sets or returns a String that represents the comments attached to this file.

 public System.String Comments{ get; set; }
Public Property Comments() As String
 MS Word equivalent: File menu > Properties > Summary tab > Comments:
          //--- Return Comments
          string comments = docProps.Comments;

          //--- Set Comments
          docProps.Comments = "This is for our next presentation.";
        
          '--- Return Comments
          Dim comments As String = docProps.Comments

          '--- Set Comments
          docProps.Comments = "This is for our next presentation."