Selection.MoveDown (Word)

Moves the selection down and returns the number of units it has been moved.

MoveDown (Unit, Count, Extend)


Selection.MoveDown Unit:=wdLine, Count:=1, Extend:=wdExtend

Arguments

Optional arguments

The following arguments are optional

Unit (WdUnits) - The unit by which the selection is to be moved.The default value is wdLine.

Here you can find possible values for WdUnits

Count (Long) - The number of units the selection is to be moved. The default value is 1.

Extend (WdMovementType) - Can be either wdMove or wdExtend. If wdMove is used, the selection is collapsed to the endpoint and moved down. If wdExtend is used, the selection is extended down. The default value is wdMove.

Possible return values are wdExtend - The end of the selection is extended to the end of the specified unit, wdMove - The selection is collapsed to an insertion point and moved to the end of the specified unit. Default.