Sets or returns whether comments will be printed at the end of the worksheet, or if they will be printed as they are displayed. If set to true, comments will be printed at the end.

(This is not supported for charts.)

<p> public boolean PrintCommentsAtEnd{ get; set; }</p>
<p>Public Property PrintCommentsAtEnd() As Boolean</p>

          //--- Get PrintCommentsAtEnd
          bool commentsAtEnd = ps.PrintCommentsAtEnd;

          //--- Set PrintCommentsAtEnd
          ps.PrintCommentsAtEnd = true;
        
          '--- Get PrintCommentsAtEnd
          Dim commentsAtEnd As Boolean = ps.PrintCommentsAtEnd

          '--- Set PrintCommentsAtEnd
          ps.PrintCommentsAtEnd = True