Skip to main content
A newer version of this page is available. .

UpdateFieldCommand.execute Method

Executes the UpdateFieldCommand command.

Declaration

execute(
    callback?: () => void
): boolean

Parameters

Name Type Description
callback () => void

A callback function that is performed when updating of all fields in the selection is completed.

Returns

Type Description
boolean

true if the command has been successfully executed; false if the command execution has failed.

Remarks

Usage example:

richEdit.commands.updateField.execute(function() {});
See Also