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

Parameters

Remarks

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

See Also

ItemValuePushed
ItemValueNeeded
Microsoft.VisualBasic.PowerPacks Namespace
Introduction to the DataRepeater Control (Visual Studio)
Virtual Mode in the DataRepeater Control (Visual Studio)

Return to top