Dynamicweb 8 Documentation
SetUnitPrice(Double) Method
Example 

The price.
Sets the unit price.
Syntax
'Declaration
 
Public Overloads Sub SetUnitPrice( _ 
   ByVal Price As Double _ 
) 
public void SetUnitPrice( 
   double Price 
)

Parameters

Price
The price.
Example
public class MyDiscountProvider: SalesDiscountProvider
{
 
	private OrderLine CreateOrderLine(Order order, double price)
    {
       	////Negate
       	price *= -1;

       	////Add a new order line
       	OrderLine line = new OrderLine();
       	line.Order = order;
       	line.Quantity = 1;
       	line.ProductName = this.DiscountName;
       	line.SetUnitPrice(price);
       	line.ParentLineID = null;
       	line.DiscountID = DiscountID;

       	if (IsProductDiscount)
       		line.Type = Base.ChkString(Base.ChkNumber(OrderLine.OrderLineType.ProductDiscount));
       	else
       		line.Type = Base.ChkString(Base.ChkNumber(OrderLine.OrderLineType.Discount));

       	return line;
    }
 
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

OrderLine Class
OrderLine Members
Overload List

Send Feedback