我正在使用以下代码来获取字段的类型。如何获得“扩展类型”
tID = dict.tableName2Id('CustTable');
dt = new DictTable(tID);
if (dt)
{
fId = dt.fieldName2Id('CustGroup');
df = dt.fieldObject(fId);
if (df)
{
t = df.type(); // Need to get extended data type
print enum2str(t);
pause;
}
}
请帮忙。