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 void DataRepeaterItemEventHandler(
    object sender,
    DataRepeaterItemEventArgs e
)
public delegate void DataRepeaterItemEventHandler(
    Object^ sender,
    DataRepeaterItemEventArgs^ e
)
type DataRepeaterItemEventHandler = 
    delegate of 
        sender:Object *
        e:DataRepeaterItemEventArgs -> unit
Public Delegate Sub DataRepeaterItemEventHandler (
    sender As Object,
    e As DataRepeaterItemEventArgs
)

Parameters

Remarks

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

See Also

DrawItem
Microsoft.VisualBasic.PowerPacks Namespace
Introduction to the DataRepeater Control (Visual Studio)
How to: Change the Appearance of a DataRepeater Control (Visual Studio)

Return to top