ITextSelection.MoveLeft(TextRangeUnit, Int32, Boolean) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將插入點或文字選取範圍的使用中結尾移至左側,並模擬向左鍵的功能。
public:
int MoveLeft(TextRangeUnit unit, int count, bool extend);
int MoveLeft(TextRangeUnit const& unit, int const& count, bool const& extend);
public int MoveLeft(TextRangeUnit unit, int count, bool extend);
function moveLeft(unit, count, extend)
Public Function MoveLeft (unit As TextRangeUnit, count As Integer, extend As Boolean) As Integer
參數
- unit
- TextRangeUnit
要移動插入點或作用中結束的單位。 下列值有效。
值 | 對應的按鍵組合 | 意義 |
---|---|---|
字元 | 向左鍵 | 將一個字元位置向左移動。 此為預設值。 |
Word | Ctrl+向左鍵 | 將一個單字移到左邊。 |
- count
-
Int32
int
要移動的單位數。 預設值為 1。 如果 count 小於零,則移動會向右移動。
- extend
-
Boolean
bool
指出如何變更選取範圍。 如果為 True,則只會移動使用中結尾來擴充選取範圍。 False 會將選取範圍折迭至插入點,然後移動插入點。 預設值為 false。
傳回
Int32
int
插入點或作用中結束移動的單位數。 折迭選取範圍會計算為一個單位。
備註
除了單元中所述的按鍵組合之外,非零擴充值會對應到按下的 Shift 鍵。