Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
Print():var report = new StiReport();
report.Load(@"Reports\TwoSimpleLists.mrt");
report.Print();Export. Render first, then write the document to a stream in the chosen format:var report = new StiReport();
report.Load(@"Reports\TwoSimpleLists.mrt");
report.Render();
var stream = new MemoryStream();
report.ExportDocument(StiExportFormat.Pdf, stream); // or Word2007, Excel2007, ...Render() — builds the document pages in memory; required before exporting.ExportDocument(StiExportFormat, stream) — writes the result; the StiExportFormat enum selects PDF, Word, Excel, HTML and more.Print() — renders and prints in one call.