Invoked when an action occurs.
Syntax
'Declaration
Public MustOverride Sub PerformAction( _
ByVal As Object _
)
'Usage
Dim instance As Action
Dim sender As Object
instance.PerformAction(sender)
public abstract void PerformAction(
object
)
Parameters
- sender
- Object on which the action occurred
See Also