DataRepeaterItemEventHandler Delegate
Represents the method that will handle the DrawItem event.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntax
‘선언
Public Delegate Sub DataRepeaterItemEventHandler ( _
sender As Object, _
e As DataRepeaterItemEventArgs _
)
public delegate void DataRepeaterItemEventHandler(
Object sender,
DataRepeaterItemEventArgs e
)
public delegate void DataRepeaterItemEventHandler(
Object^ sender,
DataRepeaterItemEventArgs^ e
)
type DataRepeaterItemEventHandler =
delegate of
sender:Object *
e:DataRepeaterItemEventArgs -> unit
JScript does not support delegates.
Parameters
- sender
Type: System.Object
The source of the event.
- e
Type: Microsoft.VisualBasic.PowerPacks.DataRepeaterItemEventArgs
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
Other Resources
Introduction to the DataRepeater Control (Visual Studio)
How to: Change the Appearance of a DataRepeater Control (Visual Studio)