Description
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 totrue
, comments will be printed at the end.(This is not supported for charts.)
C#
<p> public boolean PrintCommentsAtEnd{ get ; set ; }</p> |
vb.net
<p> Public Property PrintCommentsAtEnd() As Boolean </p> |
Examples
C#
//--- Get PrintCommentsAtEnd bool commentsAtEnd = ps.PrintCommentsAtEnd; //--- Set PrintCommentsAtEnd ps.PrintCommentsAtEnd = true ; |
vb.net
'--- Get PrintCommentsAtEnd Dim commentsAtEnd As Boolean = ps.PrintCommentsAtEnd '--- Set PrintCommentsAtEnd ps.PrintCommentsAtEnd = True |