Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

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 to true, 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

  • No labels