//怎样使用代码得到某一层的对象(table,class...) static void xyf_lookupObjects(Args _args) { UtilElements MyObject; ; while select MyObject where MyObject.utilLevel == UtilEntryLevel::usr && MyObject.recordType == UtilElementType::Form//UtilElementType::class .... { print (strFmt("%1 %2 ", enum2str(MyObject.recordType), MyObject.name)); } pause; }