1.取得属性
TTypeInfo * ti = (TTypeInfo*)comp->ClassInfo();
2.属性的数量(包括事件)
GetTypeData(ti)->PropCount;
3.取得所有的属性(count就是2中得到的那个值)
PPropList PropList;
PropList = new PPropInfo[count];
GetPropInfos(ti, PropList);
4.访问属性
类型
Typinfo::TTypeKind type = PropType(comp, pi->Name);
值(这里是访问字符串)
strValue = GetStrProp(comp, pi);
SetStrProp(comp, pi, Value);