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);
True if the notes will be printed as end notes with the sheet.
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;
IPageSetup Interface | NativeExcel Namespace | PageSetup Property