DataRepeaterDataErrorEventHandler Delegate

 

Represents the method that will handle the DataError event.

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

Syntax

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

Parameters

Remarks

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

See Also

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

Return to top