ITextSelection.HomeKey(TextRangeUnit, Boolean) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將插入點或文字選取範圍的使用中結尾移至主位置,並模擬 Home 鍵的功能。
public:
int HomeKey(TextRangeUnit unit, bool extend);
int HomeKey(TextRangeUnit const& unit, bool const& extend);
public int HomeKey(TextRangeUnit unit, bool extend);
function homeKey(unit, extend)
Public Function HomeKey (unit As TextRangeUnit, extend As Boolean) As Integer
參數
- unit
- TextRangeUnit
要移動插入點或作用中結束的單位。 下列值有效。
- extend
-
Boolean
bool
指出如何變更選取範圍。 如果為 True,則只會移動使用中結尾來擴充選取範圍。 False 會將選取範圍折迭至插入點,然後移動插入點。 預設值為 false。
傳回
Int32
int
插入點或使用中結束移動的單位數。
備註
HomeKey 方法是邏輯方法,而不是方向方法,因此取決於所涉及的語言。 例如,在阿拉伯文文字中,HomeKey 會移至行的右端,而在英文文字中,則會向左移動。 因此 HomeKey 與 ITextSelection.MoveRight 或 ITextSelection.MoveLeft 方法不同。 HomeKey 也與 ITextRange.StartOf 方法不同,因為它從使用中結束延伸, 而 StartOf 則從開始位置延伸。