ITextSelection.MoveRight(TextRangeUnit, Int32, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将文本选择的插入点或活动端向右移动,模拟向右键的功能。
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
参数
- count
-
Int32
int
要移动的单元的数量。 默认值为 1。 如果 count 小于零,则向左移动。
- extend
-
Boolean
bool
指示如何更改所选内容。 如果为 True,则通过仅移动活动端来扩展选择范围。 False 将所选内容折叠到插入点,然后移动插入点。 默认值为 false。
返回
Int32
int
插入点或活动端移动的单位数。 折叠所选内容计为一个单位。
注解
除单元中所述的组合键外,非零扩展值对应于按下的 Shift 键。