DataRepeaterItemValueEventHandler Delegate
Represents the method that will handle the ItemValueNeeded and ItemValuePushed events.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntax
'إقرار
Public Delegate Sub DataRepeaterItemValueEventHandler ( _
sender As Object, _
e As DataRepeaterItemValueEventArgs _
)
'الاستخدام
Dim instance As New DataRepeaterItemValueEventHandler(AddressOf HandlerMethod)
public delegate void DataRepeaterItemValueEventHandler(
Object sender,
DataRepeaterItemValueEventArgs e
)
public delegate void DataRepeaterItemValueEventHandler(
Object^ sender,
DataRepeaterItemValueEventArgs^ e
)
type DataRepeaterItemValueEventHandler =
delegate of
sender:Object *
e:DataRepeaterItemValueEventArgs -> unit
JScript does not support delegates.
Parameters
- sender
Type: System.Object
The source of the event.
- e
Type: Microsoft.VisualBasic.PowerPacks.DataRepeaterItemValueEventArgs
An object that contains the event data.
Remarks
In Visual Basic, you do not have to work with this delegate explicitly.
See Also
Reference
Microsoft.VisualBasic.PowerPacks Namespace