ITextSelection.MoveRight(TextRangeUnit, Int32, Boolean) 方法

定义

将文本选择的插入点或活动端向右移动,模拟向右键的功能。

public:
 int MoveRight(TextRangeUnit unit, int count, bool extend);
int MoveRight(TextRangeUnit const& unit, int const& count, bool const& extend);
public int MoveRight(TextRangeUnit unit, int count, bool extend);
function moveRight(unit, count, extend)
Public Function MoveRight (unit As TextRangeUnit, count As Integer, extend As Boolean) As Integer

参数

unit
TextRangeUnit

移动插入点或活动端所依据的单位。 以下值有效。

相应的组合键含义
字符向右键向右移动一个字符位置。 这是默认值。
WordCtrl+向右键向右移动一个单词。
count
Int32

int

要移动的单元的数量。 默认值为 1。 如果 计数 小于零,则向左移动。

extend
Boolean

bool

指示如何更改所选内容。 True 通过仅移动活动端来扩展选择范围。 False 会将所选内容折叠到插入点,然后移动插入点。 默认值为 false。

返回

Int32

int

插入点或活动端移动的单位数。 折叠所选内容计为一个单位。

注解

单元中所述的组合键外,非零扩展值还对应于按下的 Shift 键。

适用于

另请参阅