[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Document.SectionDocument.PrintOptions

PrintOptions Property

PrintOptions

Gets a value representing the options for report printing.

Declaration
public PrintOptions PrintOptions { get; }
Property Value
Type Description
PrintOptions

A PrintOptions value that represents the print options.

Examples
var sectionDocument = new GrapeCity.ActiveReports.Document.SectionDocument();
sectionDocument.Load("Document.rdf");
sectionDocument.PrintOptions.PageScaling = GrapeCity.ActiveReports.Printing.PageScaling.MultiplePages;
sectionDocument.PrintOptions.PagesPerSheet = 2;
sectionDocument.PrintOptions.AutoRotate = true;
sectionDocument.PrintOptions.PrintPageBorder = true;
//To call the Print method, add a reference to Viewer.Win or Viewer.WPF
sectionDocument.Print();