Customizing the Viewer
Our sample projects and report templates can help you learn the basics of working with our products.The Avalonia
Toggle viewer elements. Assign the report, then set the options you want:
How it works. The viewer control has a property for every part of its chrome, letting you trim the preview to exactly what your application needs.
StiViewerControl exposes a property for every toolbar command and panel, so any part of the preview can be shown or hidden.Toggle viewer elements. Assign the report, then set the options you want:
viewerControl.Report = report;
viewerControl.ShowToolEditor = false;
viewerControl.ShowBookmarks = true;
viewerControl.ShowParameters = true;
viewerControl.ShowReportSave = false;
viewerControl.ShowClose = false;ShowToolEditor,ShowBookmarks,ShowParameters,ShowReportSave,ShowClose… — one boolean per UI element.- Assigning a property updates the control live, so the preview reconfigures itself without reloading.
How it works. The viewer control has a property for every part of its chrome, letting you trim the preview to exactly what your application needs.