TextRange.Select(TextPointer, TextPointer) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
採用兩個 TextPointer 位置來表示更新過的選取範圍,以更新目前的選取範圍。
public:
void Select(System::Windows::Documents::TextPointer ^ position1, System::Windows::Documents::TextPointer ^ position2);
public void Select (System.Windows.Documents.TextPointer position1, System.Windows.Documents.TextPointer position2);
member this.Select : System.Windows.Documents.TextPointer * System.Windows.Documents.TextPointer -> unit
Public Sub Select (position1 As TextPointer, position2 As TextPointer)
參數
- position1
- TextPointer
標記所更新選取範圍一端的固定錨點位置。
- position2
- TextPointer
標記所更新選取範圍另一端的可移動位置。
例外狀況
當 position1
和 position2
不在相同文件內時發生。
當 position1
或 position2
是 null
時發生。
備註
TextRange是由 TextPointers 所指出的兩個位置之間的選取範圍所組成。 ) 所指示 position1
的其中一個 (位置是固定的,而) 所 position2
指示的其他位置 (則為可移動) 。 這與使用滑鼠或鍵盤的使用者所做的選取方式類似。
可以調整新選取範圍的實際結尾,以符合任何適用于包含新目前選取範圍之檔的選取啟發學習法。