+-UP--------+ >>-anEditControl~ScrollCommand(--"--+-----------+--"--+----------------+--)->< +-LEFT------+ +-,--repetitions-+ +-DOWN------+ +-RIGHT-----+ +-PAGEUP----+ +-PAGELEFT--+ +-PAGEDOWN--+ +-PAGERIGHT-+
The ScrollCommand method scrolls the associated edit control in a given direction.
The arguments are:
Specifies the direction and the step size of the scroll command. Possible values are:
Scrolls up one line. UP is the default.
Scrolls down one line.
Scrolls up one page.
Scrolls down one page.
The number of times the scroll command is to be issued. If this argument is omitted, the scroll command is issued once.
The following example scrolls down 3 lines in the edit control:
edit = MyDialog~GetEditControl("NAME") if edit == .Nil then return edit~ScrollCommand("DOWN",3)