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

当前所选内容的起始位置或当前光标位置。

适用于