跳到主要内容

Delete

Removes field from document.

Syntax

expression.Delete();

expression - A variable that represents a ApiBaseField class.

Parameters

This method doesn't have any parameters.

Returns

boolean

Example

This example removes the field from document.

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

textField.SetValue('Example text');
textField.AddWidget(0, [10, 40, 160, 60]);
textField.Delete();