[]
Occurs after all the viewer pages have been fully loaded.
public event LoadCompletedEventHandler LoadCompleted
Type | Description |
---|---|
LoadCompletedEventHandler | Occurs after all the viewer pages have been fully loaded. |
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}";
};