Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The SmoApplication.ObjectDroppedEventHandler class represents the event handler that is used to handle events when an object is dropped.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Delegate Sub ObjectDroppedEventHandler ( _
sender As Object, _
e As ObjectDroppedEventArgs _
)
'Usage
Dim instance As New ObjectDroppedEventHandler(AddressOf HandlerMethod)
public delegate void ObjectDroppedEventHandler(
Object sender,
ObjectDroppedEventArgs e
)
public delegate void ObjectDroppedEventHandler(
Object^ sender,
ObjectDroppedEventArgs^ e
)
type ObjectDroppedEventHandler =
delegate of
sender:Object *
e:ObjectDroppedEventArgs -> unit
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
Type: System.Object
An Object value that specifies the source of the event.
- e
Type: Microsoft.SqlServer.Management.Smo.ObjectDroppedEventArgs
A Smohttps://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemeventargsclasstopic.asp EventArgs object that contains the event data.