Hi,
in [.Net] Modifing Handouts header we explained some requirements for Pdf generation as we use the handout mode to add header and footer areas to each slide. We would request to have the same option as well for printouts, so we can add those areas there, too.
For clarification soime screenshots about what information I am talking about (but it already is explained in the other topic related to PDF, which is already working):
image.png (8.4 KB)
image.png (34.1 KB)
Here is some example code about how we imagine to use this option:
var options = new PrintOptions // this class would be similar to PdfOptions
{
DrawSlidesFrame = true,
ShowHiddenSlides = false,
JpegQuality = 100,
NotesCommentsLayouting = { CommentsPosition = CommentsPositions.None, NotesPosition = NotesPositions.BottomFull },
};
var printDlg = new PrintDialog
{
AllowSomePages = true,
PrinterSettings =
{
MinimumPage = 1,
MaximumPage = Presentation.Slides.Count,
FromPage = 1,
ToPage = Presentation.Slides.Count,
}
};
Presentation.Print(printDlg.PrinterSettings, options);
We would appreciate if you would add the same options for printouts as they already exist for PDF.
Kind regards,
Daniel