TextBox.SelectionStart プロパティ

定義

テキスト ボックスで選択したテキストの開始位置を取得または設定します。 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

現在の選択範囲または現在のカーソル位置の開始位置。

適用対象