Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
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.