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.
async API keeps the UI thread free, so the window stays responsive during long operations.Report = new StiReport();
Report.Load("MasterDetail.mrt");Render asynchronously. Await each stage instead of blocking the UI:await Report.CompileAsync(); // only if compilation is needed
await Report.RenderAsync();CompileAsync() / RenderAsync() — build the document without blocking; ExportDocumentAsync() writes it the same way.