A report can be rendered and saved to any supported format straight from a WPF application — PDF, Word, Excel, text or image.

Render, then export. Prepare the document, then write it 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);   // Word2007, Excel2007, Text, ImagePng, ...

How it works. The prepared report is format-agnostic, so a single Render() can be exported to as many formats as you need without rebuilding it.

Используя этот сайт, вы соглашаетесь на использование файлов Cookie для аналитики и персонализированного контента. Файлы Cookie хранят полезную информацию на вашем компьютере, чтобы помочь нам повысить эффективность и удобство использования. Для получения дополнительной информации, пожалуйста, прочтите Конфиденциальность и Использование Cookie.