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
当前所选内容的起始位置或当前光标位置。