LineDown Method

Home Page (Objects)OverviewFAQReference

Applies to: TextSelection object

Moves the insertion point down one line.

Syntax

object**.LineDown** [extend][, count]

Parameters

object

An expression that evaluates to a TextSelection object.

extend

(Optional) A string constant of type DsMovementOptions that specifies what to do with the selection. Possible values are:

  • dsExtend   Extends the selection.This is the same as pressing SHIFT+DOWN ARROW.

  • dsMove   Does not extend the selection (the default).

count

(Optional) A Long that specifies the number of times you want to repeat this action. The default is one.

Example

The following example moves the insertion point down one line and extends the selection:

ActiveDocument.Selection.LineDown dsExtend

See Also   LineUp method.