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
sender
Type: System.ObjectThe source of the event.
e
Type: Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgsAn object that contains the event data.
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