RegionCodeDataSet.CountryCodesDataTable.ModifiedByChangeEventHandler Delegate
For the latest version of Commerce Server 2007 Help, see the Microsoft Web site.
Represents the method that will handle the ModifiedByChanged and ModifiedByChanging events of a RegionCodeDataSet..::.CountryCodesDataTable.
Namespace: Microsoft.CommerceServer.Orders
Assembly: Microsoft.CommerceServer.Orders.CrossTierTypes (in Microsoft.CommerceServer.Orders.CrossTierTypes.dll)
Syntax
'Declaration
Public Delegate Sub ModifiedByChangeEventHandler ( _
sender As RegionCodeDataSet..::.CountryCodesDataTable, _
e As RegionCodeDataSet..::.CountryCodesDataTable..::.ModifiedByChangeEventArg _
)
'Usage
Dim instance As New ModifiedByChangeEventHandler(AddressOf HandlerMethod)
public delegate void ModifiedByChangeEventHandler(
RegionCodeDataSet..::.CountryCodesDataTable sender,
RegionCodeDataSet..::.CountryCodesDataTable..::.ModifiedByChangeEventArg e
)
public delegate void ModifiedByChangeEventHandler(
RegionCodeDataSet..::.CountryCodesDataTable^ sender,
RegionCodeDataSet..::.CountryCodesDataTable..::.ModifiedByChangeEventArg^ e
)
JScript does not support delegates.
Parameters
- sender
Type: Microsoft.CommerceServer.Orders..::.RegionCodeDataSet..::.CountryCodesDataTable
The source of the event.
- e
Type: Microsoft.CommerceServer.Orders..::.RegionCodeDataSet..::.CountryCodesDataTable..::.ModifiedByChangeEventArg
The RegionCodeDataSet..::.CountryCodesDataTable..::.ModifiedByChangeEventArg that contains the event data.
Remarks
Delegate for events on the RegionCodeDataSet..::.CountryCodesDataTable.
The event handler receives an argument of type RegionCodeDataSet..::.CountryCodesDataTable..::.ModifiedByChangeEventArg containing data related to this event.
When you create a RegionCodeDataSet..::.CountryCodesDataTable..::.ModifiedByChangeEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event-handler delegates, see Events and Delegates.