Gets the automatically calculated handling charge for this order.

Namespace:  Asi.iBO.Commerce
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public decimal AutoHandlingAmount { get; }
Visual Basic (Declaration)
Public ReadOnly Property AutoHandlingAmount As Decimal
Visual C++
public:
property Decimal AutoHandlingAmount {
	Decimal get ();
}

Field Value

A monetary amount representing the handling charged on this order.

Remarks

Handling charges on an order may be set manually or calculated automatically according to the value of the AutoCalculateHandlingFlag property. If AutoCalculateHandlingFlag is true, this property will contain the freight amount. If false, the ManualHandlingAmount property will contain the freight charge. The TotalHandlingAmount property can be read to get the value either way.

See Also