'We assume that the annotationManager object has been integrated into your application.
Friend WithEvents annotationManager As GdPicture14.AnnotationManager
'Add the event.
AddHandler annotationManager.SavingProgress, AddressOf annotationManager_SavingProgress
'Define the event.
Sub annotationManager_SavingProgress(ByVal PageNo As Integer, ByVal PageCount As Integer) Handles annotationManager.SavingProgress
'Do your stuff here.
End Sub
//We assume that the annotationManager object has been integrated into your application.
//Add the event.
annotationManager.SavingProgress += annotationManager_SavingProgress;
//Define the event.
void annotationManager_SavingProgress(int PageNo, int PageCount)
{
//Do your stuff here.
}