Syntax
Public Function OrderLots (ByVal orderID As Long) As Double.
Description
This function is used to get the order amountfor the given order ID.
Parameters
Parameter | Description |
OrderID |
The order number to get its amount. Value of type is Long. |
Return value
Returns the orders amount of lots as the value of type Double.
Sample
Public Sub main() Dim OrderID as Long = ClientCode.orderGetID (1) Dim lots as Double lots = ClientCode.OrderLots (OrderID) GUI.MsgDialog(lots) End Sub
See Also