Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
Design() — the standalone designer opens for that report:var report = new StiReport();
report.Design();StiDesigner.SavingReport to take control of saving. The event lets you decide how and where the template is stored:StiDesigner.SavingReport += GlobalEvents_SaveReport;
private void GlobalEvents_SaveReport(object sender, StiSavingObjectEventArgs e)
{
if (e.EventSource == StiSaveEventSource.SaveAs)
{
e.Processed = false;
return;
}
var report = ((IStiDesignerBase)sender).Report;
// save the report where you need
}e.Processed tells the designer whether you have handled the save yourself, which is how you redirect templates to a database or a custom storage instead of the file system.