Gets an array of the COrderLine objects associated with the order.

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

Syntax

C#
public CStandardOrderLine[] OrderLines { get; }
Visual Basic (Declaration)
Public ReadOnly Property OrderLines As CStandardOrderLine()
Visual C++
public:
property array<CStandardOrderLine^>^ OrderLines {
	array<CStandardOrderLine^>^ get ();
}

Field Value

COrderLine represents a single line on an order (e.g., an order for a single product in any quantity). This property returns the array of all lines on the order.

Remarks

The array returned should be treated as read only. To add a new line to the order use the NewLineItem(CStandardProduct, Double) method (or one of its derived descendants). To remove a line, use the RemoveOrderLine(Double) method or the ClearOrderLines()()() method to remove all lines.

See Also