To iterate the values of a Base Enum use the following code:
SysDictEnum SysDictEnum = new SysDictEnum(enumNum(WeekDays));
int i;
for (i=0; i<SysDictEnum.values(); i++)
{
info(SysDictEnum.index2Label(i));
}
To iterate the values of a Base Enum use the following code:
SysDictEnum SysDictEnum = new SysDictEnum(enumNum(WeekDays));
int i;
for (i=0; i<SysDictEnum.values(); i++)
{
info(SysDictEnum.index2Label(i));
}