Share via


ShippingRatesDataSet.ShippingRatesDataTable.PriceChangeEventHandler Delegate

For the latest version of Commerce Server 2007 Help, see the Microsoft Web site.

Represents the method that will handle the ShippingRatesDataSet..::.ShippingRatesDataTable..::.PriceChangeEventArg events of a ShippingRatesDataSet..::.ShippingRatesDataTable.

Namespace:  Microsoft.CommerceServer.Orders
Assembly:  Microsoft.CommerceServer.Orders.CrossTierTypes (in Microsoft.CommerceServer.Orders.CrossTierTypes.dll)

Syntax

'Declaration
Public Delegate Sub PriceChangeEventHandler ( _
    sender As ShippingRatesDataSet..::.ShippingRatesDataTable, _
    e As ShippingRatesDataSet..::.ShippingRatesDataTable..::.PriceChangeEventArg _
)
'Usage
Dim instance As New PriceChangeEventHandler(AddressOf HandlerMethod)
public delegate void PriceChangeEventHandler(
    ShippingRatesDataSet..::.ShippingRatesDataTable sender,
    ShippingRatesDataSet..::.ShippingRatesDataTable..::.PriceChangeEventArg e
)
public delegate void PriceChangeEventHandler(
    ShippingRatesDataSet..::.ShippingRatesDataTable^ sender, 
    ShippingRatesDataSet..::.ShippingRatesDataTable..::.PriceChangeEventArg^ e
)
JScript does not support delegates.

Parameters

Remarks

Delegate for events on the ShippingRatesDataSet..::.ShippingRatesDataTable.

The event handler receives an argument of type ShippingRatesDataSet..::.ShippingRatesDataTable..::.PriceChangeEventArg containing data related to this event.

When you create a ShippingRatesDataSet..::.ShippingRatesDataTable..::.PriceChangeEventHandler 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.

See Also

Reference

Microsoft.CommerceServer.Orders Namespace