[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Viewer.Wpf.Viewer.LoadCompleted

LoadCompleted Event

Occurs after all the viewer pages have been fully loaded.

Namespace: GrapeCity.ActiveReports.Viewer.Wpf
Assembly: MESCIUS.ActiveReports.Viewer.Wpf.dll
Syntax
public event LoadCompletedEventHandler LoadCompleted
Returns
Type Description
LoadCompletedEventHandler Occurs after all the viewer pages have been fully loaded.
Examples
viewer.LoadCompleted += (sender, e) =>
{
    // Handle the LoadCompleted event
    // For example, update the status bar with the total number of pages
    statusBarLabel.Text = $"Total Pages: {viewer.Document.Pages.Count}";
};