Przykład wypisuje elementy słownika "Dział" z ich atrybutami.
Kod:
DictStringMgr DictMgr
DictMgr.SetDictionary("Dział")
print using "Słownik : %s" + lf,DictMgr.GetDictionaryName()
int i
for i = 0 to i > DictMgr.GetDictValueCount()
print using "%s %s"+lf,DictMgr.GetDictValue(i) ,DictMgr.GetAttrValue(i)
next i