TextBox.SelectionStart 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定文字方塊中所選取文字的開始位置。 當 SelectionLength 為 0 (沒有選取的文字) 時,SelectionStart 屬性會對應至游標位置。
public:
property int SelectionStart { int get(); void set(int value); };
int SelectionStart();
void SelectionStart(int value);
public int SelectionStart { get; set; }
var int32 = textBox.selectionStart;
textBox.selectionStart = int32;
Public Property SelectionStart As Integer
<TextBox SelectionStart="int"/>
屬性值
Int32
int
目前選取範圍或目前游標位置的起始位置。