Parameters
- ex
- The exception to report.
// Instantiating the Viewer control and adding it to a form. Viewer viewer = new Viewer(); viewer.Dock = DockStyle.Fill; this.Controls.Add(viewer); // Example of handling an error that might occur during document loading. try { viewer.LoadDocument("path/to/your/report.rdlx"); } catch (Exception ex) { viewer.HandleError(ex); }