根据ID号设置控件属性(字符串类型) – setPropString
根据ID号,设置控件属性,限定控件属性为字符串类型的情况。
定义
void setPropString(int pageId, int ctrlId, int propId, string val);
参数
- pageId:
控件所在的页的Id
- ctrlId:
控件的ID
- propId:
控件属性的Id
- val:
新的字符串
返回值
无
示例
// 设置文本控件(所在页面id为0,控件id为4) 的字符串为 hello
setPropString (0, 4, 22, "hello");
// 这里控件属性id为22为文本控件txt固有属性的id,可以idof查看