共用方式為


Word) (Selection.MoveRight 方法

向右移動選取項目並傳回移動的單位數。

語法

expressionMoveRight( _Unit_ , _Count_ , _Extend_ )

需要 expression。 代表 Selection 物件的變數。

參數

名稱 必要/選用 資料類型 描述
Unit 選用 WdUnits 選取範圍是要移動的單位。預設值為 wdCharacter
Count 選用 Variant 移動選取項目的單位數。 預設值為 1。
Extend 選用 Variant 可以是 wdMovewdExtend 。 如果使用 wdMove,選取範圍就會摺疊成結束點並向右移動。 如果使用 wdExtend,選取範圍就會向右延伸。 預設值是 wdMove

傳回值

Long

註解

當 Unit 為 wdCell 時,Extend 引數只能是 wdMove

範例

這則範例會讓選取項目移至上一個功能變數前面,然後選取此功能變數。

With Selection 
 Set MyRange = .GoTo(wdGoToField, wdGoToPrevious) 
 .MoveRight Unit:=wdWord, Count:=1, Extend:=wdExtend 
 If Selection.Fields.Count = 1 Then Selection.Fields(1).Update 
End With

這則範例會讓選取項目向右移動一個字元。 如果移動成功,MoveRight 就會傳回 1。

If Selection.MoveRight = 1 Then MsgBox "Move was successful"

這則範例會讓選取項目移至下一個表格儲存格。

If Selection.Information(wdWithInTable) = True Then 
 Selection.MoveRight Unit:=wdCell, Count:=1, Extend:=wdMove 
End If

另請參閱

Selection 物件

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應