[]
Gets a value representing the options for report printing.
public PrintOptions PrintOptions { get; }
Type | Description |
---|---|
PrintOptions | A PrintOptions value that represents the print options. |
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();