Represents the method that will handle the LoadCompleted event of a Document.
Syntax
'Declaration
Public Delegate Sub LoadCompletedEventHandler( _
ByVal As Object, _
ByVal As EventArgs _
)
public delegate void LoadCompletedEventHandler(
object ,
EventArgs
)
Parameters
- sender
- Source of the event.
- e
- An LoadCompletedEventArgs value that contains the event data.
See Also