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

'Declaration
Public Delegate Sub DataRepeaterItemEventHandler ( _
    sender As Object, _
    e As DataRepeaterItemEventArgs _
)
'Usage
Dim instance As New DataRepeaterItemEventHandler(AddressOf HandlerMethod)
public delegate void DataRepeaterItemEventHandler(
    Object sender,
    DataRepeaterItemEventArgs e
)
public delegate void DataRepeaterItemEventHandler(
    Object^ sender, 
    DataRepeaterItemEventArgs^ e
)
JScript does not support delegates.

Parameters

Remarks

In Visual Basic, you do not have to work with this delegate explicitly.

See Also

Reference

Microsoft.VisualBasic.PowerPacks Namespace

DrawItem

Other Resources

Introduction to the DataRepeater Control (Visual Studio)

How to: Change the Appearance of a DataRepeater Control (Visual Studio)