Executes the InsertNumerationCommand command by applying the specified setting. May result in taking no action if the command's state does not allow command execution. Use the object's getState method to check the command state.
function execute( abstractNumberingListIndex : int ) : bool;
The execute method checks the command state (obtained using the getState method) before executing, and decides whether the action can be performed.
Usage example:
richEdit.commands.insertNumeration.execute(0);