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 the row and column headings will be printed for this worksheet.

(This is not supported for charts.)

C#
public bool PrintHeadings{ get; set; }
vb.net
Public Property PrintHeadings() As Boolean

Examples

C#
//--- Get PrintHeadings
bool prntHeadings = ps.PrintHeadings;
 
//--- Set PrintHeadings
ps.PrintHeadings = true;
vb.net
'--- Get PrintHeadings
Dim prntHeadings As Boolean = ps.PrintHeadings
 
'--- Set PrintHeadings
ps.PrintHeadings = True
  • No labels