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 |