GetClientValue

string GetClientValue(int index)

Returns the client representation a domain value given its index.

Parameters

Name Description
int index The index of the client value.

Example

cEnumeration enumOrderSupplyType = cEnumeration.Get("OrderSupplyType");
for (int i = 0; i < enumOrderSupplyType.Count; i++)
{
   string nextClientValue = enumOrderSupplyType.GetClientValue(i);
   ...
}

Comments

This is equivalent client method to the database domain method <Domain>_API.Get_Client_Value(index IN NUMBER) RETURN VARCHAR2.

Returns

Returns the client representation a domain value given its index.