次のコードを使用して、フィールドのタイプを取得しています。「拡張タイプ」の入手方法
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;
}
}
親切に助けてください。