DataRepeaterItemCloneEventHandler Delegate

 

Represents the method that will handle the ItemCloning event.

Namespace:   Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

public delegate void DataRepeaterItemCloneEventHandler(
    object sender,
    DataRepeaterItemCloneEventArgs e
)
public delegate void DataRepeaterItemCloneEventHandler(
    Object^ sender,
    DataRepeaterItemCloneEventArgs^ e
)
type DataRepeaterItemCloneEventHandler = 
    delegate of 
        sender:Object *
        e:DataRepeaterItemCloneEventArgs -> unit
Public Delegate Sub DataRepeaterItemCloneEventHandler (
    sender As Object,
    e As DataRepeaterItemCloneEventArgs
)

Parameters

Remarks

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

See Also

ItemCloning
Microsoft.VisualBasic.PowerPacks Namespace
Introduction to the DataRepeater Control (Visual Studio)

Return to top