跳到主要内容

SetPlaceholder

设置文本字段占位符。

语法

expression.SetPlaceholder(placeholder);

expression - 表示 ApiTextWidget 类的变量。

参数

名称必需/可选数据类型默认值描述
placeholder必需string占位符文本。

返回值

boolean

示例

在 PDF 中添加在文本字段中输入前显示的提示文本。

// How do I add a hint text to an empty text field in a PDF?

// Configure what example text shows when a text field is empty in a PDF.

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].SetPlaceholder('Your text here');