NativeExcel for .Net Developer's Reference

IPageSetup.PrintNotes Property

Gets or sets a value that indicates whether the notes will be printed as end notes with the sheet.

[Visual Basic]
Property PrintNotes As Boolean
[C#]
bool PrintNotes { get; set; }
[C++]
__property bool get_PrintNotes();
__property void set_PrintNotes(bool );
[JScript]
function get PrintNotes() : bool
function set PrintNotes(bool);

Property Value

True if the notes will be printed as end notes with the sheet.

Example

This example sets PrintNotes property to true;

[C#]
book.Worksheets[1].PageSetup.PrintNotes = true;
[Visual Basic]
book.Worksheets(1).PageSetup.PrintNotes = True
[C++]
book->Worksheets->Item[1]->PageSetup->PrintNotes = true;

See Also

IPageSetup Interface | NativeExcel Namespace | PageSetup Property