跳到主要内容

MoveCursorOutside

将光标放置在当前表单之前/之后。

语法

expression.MoveCursorOutside(isAfter);

expression - 表示 ApiComboBoxForm 类的变量。

参数

名称必需/可选数据类型默认值描述
isAfter可选booleantrue指定光标是放置在当前表单之前(false)还是之后(true)。

返回值

boolean

示例

此示例展示如何将光标移到外部。

// How to know whether the cursor should be moved out of the text form.

// Place the cursor after the current form.

let doc = Api.GetDocument();
let textForm = Api.CreateTextForm({"key": "Personal information", "tip": "Enter your first name", "required": true, "placeholder": "First name", "comb": true, "maxCharacters": 10, "cellWidth": 3, "multiLine": false, "autoFit": false});
let paragraph = doc.GetElement(0);
paragraph.AddElement(textForm);
textForm.SetText("The cursor will be placed after the current form.");
textForm.MoveCursorOutside(true);