EditRight @Command (Formula Language)

Moves the insertion point in a document to the right by the number of spaces you specify. If you don't specify a number, moves the insertion point one space to the right.

Syntax

@Command( [EditRight] ; count )

Parameters

count

Number. Optional. The number of spaces you want to move.

Usage

  • On a form or subform in Design mode, EditRight moves the insertion point one or count spaces to the right, as if the user had pressed RIGHT.
  • In a document in Edit mode, EditRight moves the insertion point one or count spaces to the right within the current field, or if there are no more spaces in the current field, in the next editable field (which may be to the right of, or below, the current field).
  • In a document in Read mode, EditRight has no effect.

This command does not work on the Web.

If using this command in a hotspot button or any other element that causes a change in focus, the EditGoToField or EditTop command must be used first to return the focus to the document. The document must be in Edit mode.

Examples

This formula moves the insertion point three spaces to the right.
@Command( [EditRight]; "3" )