'Declaration Public Sub HandleError( _ ByVal ex As Exception _ )
public void HandleError( Exception ex )
var viewer = new 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); }
Viewer Class Viewer Members