跳到主要内容

SetRegularExp

设置文本控件的正则验证表达式。

语法

expression.SetRegularExp(sReg);

expression - 表示 ApiTextWidget 类的变量。

参数

名称必需/可选数据类型默认值描述
sReg必需string字段正则表达式

返回值

boolean

示例

此示例为文本控件设置正则表达式。

let doc = Api.GetDocument();
let page = doc.GetPage(0);
let comboboxField = Api.CreateComboboxField([10, 10, 160, 30]);
page.AddObject(comboboxField);

let widgets = comboboxField.GetAllWidgets();
widgets[0].SetRegularExp('\S+@\S+\.\S+');