Programmatically?
Given an ECProperty prop:
ECValue valuesArray;
ECValue value;
auto attr = prop.GetCustomAttribute(L"EditorCustomAttributes", L"StandardValues");
attr->GetValue(valuesArray, L"ValueMap");
for (uint32_t i = 0; i < valuesArray.GetArrayInfo().GetCount(); i++)
{
auto map = attr->GetValue(value, L"ValueMap", i);
ECValue integer, displayString;
map->GetValue(integer, L"Value");
map->GetValue(displayString, L"DisplayString");
printf("%ls = %d", !displayString.IsNull() ? displayString.GetString() : L"", integer.GetInteger());
}
Obviously missing some nullptr tests etc.