Syntax
Public Function OrderGetInteger(ByVal property_id As ENUM_ORDER_PROPERTY_INTEGER) As Long.
Description
This function is used to return value of type Integerthat is corresponding at the order property for the selected orderthrough SelectOrderByIndexor SelectOrderByID.
Parameters
Parameter | Description |
property_id |
Property that wants to get its value. It can be one of theENUM_ORDER_PROPERTY_INTEGER. |
Return value
Returns the requested order property value as value of type Integer.
Sample
Public Sub main() Dim Select_Result as Boolean Dim value as Long Select_Result = ClientCode.SelectOrderByIndex (1) select the first order at trade list If Result = true then value = ClientCode.OrderGetInteger (VTLGeneral.ENUM_ORDER_PROPERTY_Integer.ORDER_OPERATIONT_TYPE) GUI.MsgDialog(Order operation type: & value) End If End Sub
See Also