'Declaration Public ReadOnly Property PrintOptions As PrintOptions
public PrintOptions PrintOptions {get;}
'Declaration Public ReadOnly Property PrintOptions As PrintOptions
public PrintOptions PrintOptions {get;}
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();