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

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

Syntax

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

Field Value

COrderLine represents a single line on a COrder (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 shuld be treated as read-only. The add a new line to the order, use the NewLineItem method on one of the derived classes. To remove a line, use the RemoveOrderLine(Double) method or the ClearOrderLines()()()() method to remove all lines.

See Also